Skip to main content

zlicenser_server/
lib.rs

1#![warn(clippy::all, clippy::pedantic)]
2#![deny(unsafe_op_in_unsafe_fn)]
3// Pre-existing documentation debt; fix incrementally as code is touched .
4#![allow(clippy::missing_errors_doc, clippy::must_use_candidate)]
5
6pub mod core;
7pub mod error;
8pub mod issuance;
9pub mod payment;
10pub mod storage;
11
12#[cfg(feature = "http-server")]
13pub mod http;
14
15pub use error::Error;
16pub type Result<T> = std::result::Result<T, Error>;
17
18pub fn hello_world() -> &'static str {
19    "hello from zlicenser-server"
20}