anya-core 1.2.0

Enterprise-grade Bitcoin Infrastructure Platform
Documentation
pub mod auth;
pub mod dlc;
pub mod identity;
pub mod system;
pub mod wallet;

pub struct ApiHandlers;

impl Default for ApiHandlers {
    fn default() -> Self {
        Self::new()
    }
}

impl ApiHandlers {
    pub fn new() -> Self {
        Self
    }
}