rustmvc 0.2.2

A lightweight MVC framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
use crate::Server;
use rustmvc::*;

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    let mut server = Server::new();
    server.use_static_files();
    server.start("127.0.0.1:8080").await
}