ipblc/src/main.rs

15 lines
189 B
Rust
Raw Normal View History

mod config;
2022-12-30 20:18:15 +01:00
mod fw;
mod ip;
mod ipblc;
2023-04-09 01:42:17 +02:00
mod monitoring;
mod utils;
2023-03-05 23:05:50 +01:00
mod webservice;
mod websocket;
#[tokio::main]
pub async fn main() {
// Create a new context
2022-12-30 20:18:15 +01:00
ipblc::run().await;
}