ragit-server 0.4.2

poc server implementation of ragit
1
2
3
4
5
6
7
8
9
10
11
use std::sync::OnceLock;

pub mod cli;
pub mod config;
pub mod error;
pub mod macros;
pub mod methods;
pub mod models;
pub mod utils;

pub static CONFIG: OnceLock<crate::config::Config> = OnceLock::new();