zlicenser-server 0.1.1

Server library for the zlicenser hardware-bound software licensing framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod core;
pub mod error;
pub mod issuance;
pub mod payment;
pub mod storage;

#[cfg(feature = "http-server")]
pub mod http;

pub use error::Error;
pub type Result<T> = std::result::Result<T, Error>;

pub fn hello_world() -> &'static str {
    "hello from zlicenser-server"
}