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