teo 0.2.6-alpha.5

Next-generation web framework for Rust, Node.js and Python.
Documentation
pub mod cli;
pub mod app;
pub mod server;
pub mod migrate;
pub mod purge;
pub mod seeder;
mod message;

pub mod prelude {
    pub use crate::app::App;
    pub use crate::app;
    pub use crate::cli::entrance::Entrance;
    pub use crate::cli::runtime_version::RuntimeVersion;
    pub use crate::server::static_files::serve_static_files;
    pub use teo_runtime::namespace::Namespace;
    pub extern crate teo_result;
    pub use teo_result::{Error, Result, ResultExt};
    pub extern crate tokio;
    pub use tokio::main;
    pub extern crate key_path;
    pub use key_path::path;
    pub use teo_runtime::request;
    pub use teo_runtime::response::Response;
    pub use teo_runtime::path;
    pub use teo_runtime::model;
    pub use teo_runtime::model::Model;
    pub use teo_runtime::r#struct;
    pub use teo_runtime::r#struct::Struct;
    pub use teo_runtime::interface_enum_variant::InterfaceEnumVariant;
    pub use teo_runtime::object;
    pub use teo_runtime::interface;
    pub use teo_runtime::connection::transaction;
    pub use teo_teon::value::Value;
    pub use teo_teon::teon;
    pub use teo_teon::teon_vec;
    pub use teo_teon::teon_unexpected;
    pub use teo_teon::teon_expect_expr_comma;
    pub use teo_teon::types::enum_variant::EnumVariant;
    pub use teo_teon::types::option_variant::OptionVariant;
    pub use teo_teon::types::range::Range;
    pub use teo_teon::types::file::File;
    pub use teo_runtime::request::ctx::extract::ExtractFromRequestCtx;
    pub use teo_runtime::request::Request;
    pub use teo_runtime::response;
    pub use teo_runtime::pipeline;
    pub use teo_runtime::handler;
    pub use teo_runtime::pipeline::Pipeline;
    pub use teo_runtime::pipeline::ctx::extract::ExtractFromPipelineCtx;
    pub use teo_runtime::middleware::middleware::middleware_wrap_fn;
    pub use teo_runtime::connection::transaction::ExtractFromTransactionCtx;
    pub use teo_runtime::arguments::Arguments;
    pub use teo_runtime::middleware::next::Next;
    pub use teo_runtime::middleware::middleware::Middleware;
    pub use teo_runtime::r#enum::Enum;
    pub use teo_runtime::r#enum::member::Member;
}