loco-rs 0.1.1

The one-person framework for Rust
Documentation
pub use async_trait::async_trait;
pub use axum::{
    extract::{Form, Path, State},
    routing::{delete, get, post, put},
    Json,
};
pub use include_dir::{include_dir, Dir};
#[cfg(feature = "with-db")]
pub use sea_orm::{ActiveModelTrait, EntityTrait, IntoActiveModel, ModelTrait, Set};

#[cfg(any(feature = "auth_jwt", feature = "with-db"))]
pub use crate::controller::middleware::auth;
pub use crate::{
    app::AppContext,
    controller::{format, not_found, unauthorized, Routes},
    errors::Error,
    mailer,
    mailer::Mailer,
    task::{Task, TaskInfo},
    worker, Result,
};