Files
arbiter/server/crates/arbiter-server/src/lib.rs
hdbg b122aa464c
Some checks failed
ci/woodpecker/pr/server-audit Pipeline was successful
ci/woodpecker/pr/server-vet Pipeline failed
ci/woodpecker/pr/server-lint Pipeline failed
ci/woodpecker/pr/server-test Pipeline failed
refactor(server): rework envelopes and integrity check
2026-04-05 14:17:00 +02:00

22 lines
330 B
Rust

#![forbid(unsafe_code)]
use crate::context::ServerContext;
pub mod actors;
pub mod context;
pub mod crypto;
pub mod db;
pub mod evm;
pub mod grpc;
pub mod safe_cell;
pub mod utils;
pub struct Server {
context: ServerContext,
}
impl Server {
pub fn new(context: ServerContext) -> Self {
Self { context }
}
}