mirror of
https://github.com/telemt/telemt.git
synced 2026-05-23 04:01:44 +03:00
25 lines
364 B
Rust
25 lines
364 B
Rust
//! telemt — Telegram MTProto Proxy
|
|
|
|
mod api;
|
|
mod cli;
|
|
mod config;
|
|
mod crypto;
|
|
mod error;
|
|
mod ip_tracker;
|
|
mod maestro;
|
|
mod metrics;
|
|
mod network;
|
|
mod protocol;
|
|
mod proxy;
|
|
mod startup;
|
|
mod stats;
|
|
mod stream;
|
|
mod tls_front;
|
|
mod transport;
|
|
mod util;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> std::result::Result<(), Box<dyn std::error::Error>> {
|
|
maestro::run().await
|
|
}
|