1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//!
//! Goods helps keeping asset importing code away from app and
//! address assets with uuids instead of error-prone file paths and URLs.
//!
//! Importers can be loaded from dylib crates. See [`dummy`] crate for example
//!
//! TODO: Ability to archive selected assets
//!
//!
//! [`goods-cli`] - CLI tool can be used to create goods instances, register assets and checks loading-importing process.
//!
//! [dummy]: https://github.com/zakarumych/goods/tree/overhaul/dummy
//! [`goods-cli`]: https://github.com/zakarumych/goods/tree/overhaul/cli
//!

mod asset;

#[cfg(feature = "import")]
mod import;

mod treasury;

#[cfg(feature = "import")]
pub use goods_treasury_import::*;

pub use self::treasury::*;