1pub mod core;
2pub mod error;
3pub mod issuance;
4pub mod payment;
5pub mod storage;
6
7#[cfg(feature = "http-server")]
8pub mod http;
9
10pub use error::Error;
11pub type Result<T> = std::result::Result<T, Error>;
12
13pub fn hello_world() -> &'static str {
14 "hello from zlicenser-server"
15}