snx 0.0.1

an experimental web framework
Documentation
1
2
3
4
5
6
use crate::app::App;

/// Boots the application.
pub async fn boot<A: App>() {
    A::serve().await
}