allframe 0.1.28

Complete Rust web framework with built-in HTTP/2 server, REST/GraphQL/gRPC, compile-time DI, CQRS - TDD from day zero
Documentation
1
2
3
4
5
6
7
8
9
//! AllFrame CLI binary
//!
//! This is a thin wrapper that calls the allframe-forge library's `run()`
//! function. It enables `cargo install allframe` to provide the `allframe` CLI
//! tool.

fn main() -> anyhow::Result<()> {
    allframe_forge::run()
}