sfx 0.1.2

SFX is a streamlined, full-stack Rust framework for building small web services with integrated authentication, localization, and config-driven UI components
Documentation
1
2
3
4
5
6
7
use sfx::prelude::*;
use {{crate_name}}::APP;

#[tokio::main]
async fn main() {
    APP.clone().run().await;
}