teo 0.0.52-beta.3

REDEFINED HTTP server framework.
Documentation
1
2
3
4
5
6
7
8
9
10
use tokio::main;
use teo::core::app::entrance::Entrance;
use teo::prelude::AppBuilder;

#[main]
async fn main() -> std::io::Result<()> {
    let mut app_builder = AppBuilder::new_with_entrance(Entrance::CLI);
    let app = app_builder.build().await;
    app.run().await
}