rum_framework 0.0.1

A toy web framework inspired by gin-gonic and express-js.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod context;
mod handler;
mod method;
mod response;
pub mod router;
mod server;
pub mod status_code;
mod thread;
mod lib_test;

pub mod rum {
    use crate::server::RumServer;

    pub fn new(host: &str, port: i32) -> RumServer {
        return RumServer::new(host, port);
    }
}