aboutsummaryrefslogtreecommitdiff
path: root/dotup/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dotup/src/lib.rs')
-rw-r--r--dotup/src/lib.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/dotup/src/lib.rs b/dotup/src/lib.rs
deleted file mode 100644
index 96c4cd7..0000000
--- a/dotup/src/lib.rs
+++ /dev/null
@@ -1,18 +0,0 @@
1mod archive;
2mod depot;
3mod error;
4
5pub mod utils;
6
7pub use archive::{
8 archive_deserialize, archive_exists, archive_read, archive_serialize, archive_write, Archive,
9 ArchiveLink,
10};
11pub use depot::{
12 Depot, DepotConfig, Link, LinkCreateError, LinkCreateParams, LinkID, LinkInstallError,
13};
14pub use error::{Error, Result};
15
16pub(crate) mod internal_prelude {
17 pub use super::{utils, Error, Result};
18}