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.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/dotup/src/lib.rs b/dotup/src/lib.rs
new file mode 100644
index 0000000..6ef59e6
--- /dev/null
+++ b/dotup/src/lib.rs
@@ -0,0 +1,16 @@
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::{Depot, DepotConfig, Link, LinkDesc, LinkID, LinkInstallError};
12pub use error::{Error, Result};
13
14pub(crate) mod internal_prelude {
15 pub use super::{utils, Error, Result};
16}