rum_framework/
lib.rs

1pub mod context;
2mod handler;
3mod method;
4mod response;
5pub mod router;
6mod server;
7pub mod status_code;
8mod thread;
9mod lib_test;
10
11pub mod rum {
12    use crate::server::RumServer;
13
14    pub fn new(host: &str, port: i32) -> RumServer {
15        return RumServer::new(host, port);
16    }
17}