diff options
Diffstat (limited to 'dotup/src/lib.rs')
| -rw-r--r-- | dotup/src/lib.rs | 16 |
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 @@ | |||
| 1 | mod archive; | ||
| 2 | mod depot; | ||
| 3 | mod error; | ||
| 4 | |||
| 5 | pub mod utils; | ||
| 6 | |||
| 7 | pub use archive::{ | ||
| 8 | archive_deserialize, archive_exists, archive_read, archive_serialize, archive_write, Archive, | ||
| 9 | ArchiveLink, | ||
| 10 | }; | ||
| 11 | pub use depot::{Depot, DepotConfig, Link, LinkDesc, LinkID, LinkInstallError}; | ||
| 12 | pub use error::{Error, Result}; | ||
| 13 | |||
| 14 | pub(crate) mod internal_prelude { | ||
| 15 | pub use super::{utils, Error, Result}; | ||
| 16 | } | ||
