mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
18 lines
282 B
Rust
18 lines
282 B
Rust
#![forbid(unsafe_code)]
|
|
pub mod data;
|
|
|
|
mod state;
|
|
pub use state::UserState;
|
|
|
|
pub mod persist;
|
|
pub use persist::user::{UserImpl, UserProvider, UserAuthenticator};
|
|
pub use persist::config::{ConfigImpl, ConfigProvider};
|
|
|
|
pub mod polariton;
|
|
|
|
pub mod factory;
|
|
|
|
pub mod cubes;
|
|
|
|
mod auth;
|