Files
arbiter/server/crates/arbiter-server/src/lib.rs
2026-08-26 13:00:40 +02:00

21 lines
308 B
Rust

use crate::context::ServerContext;
pub mod actors;
pub mod context;
pub mod crypto;
pub mod db;
pub mod evm;
pub mod grpc;
pub mod peers;
pub mod utils;
pub struct Server {
context: ServerContext,
}
impl Server {
pub const fn new(context: ServerContext) -> Self {
Self { context }
}
}