teo 0.2.6-alpha.5

Next-generation web framework for Rust, Node.js and Python.
Documentation
1
2
3
4
5
6
7
8
9
10
use tokio::main;
use teo_result::Result;
use teo::app::App;
use teo::cli::entrance::Entrance;

#[main]
async fn main() -> Result<()> {
    let app = App::new_with_entrance_and_runtime_version(Some(Entrance::CLI), None, None)?;
    app.run().await
}