sword 0.3.0

Structured web framework built on top of tokio ecosystem, providing powerful features for building robust web applications.
1
2
3
4
5
6
7
8
9
pub use sword_core::ApplicationConfig;

pub enum ApplicationEngine {
    #[cfg(any(feature = "web", feature = "socketio"))]
    Web(sword_web::application::WebApplication),

    #[cfg(feature = "grpc")]
    Grpc(sword_grpc::application::GrpcApplication),
}