15 lines
189 B
Rust
15 lines
189 B
Rust
mod config;
|
|
mod fw;
|
|
mod ip;
|
|
mod ipblc;
|
|
mod monitoring;
|
|
mod utils;
|
|
mod webservice;
|
|
mod websocket;
|
|
|
|
#[tokio::main]
|
|
pub async fn main() {
|
|
// Create a new context
|
|
ipblc::run().await;
|
|
}
|