feat(library): basic library structure completed

This commit is contained in:
2025-01-14 21:45:40 +01:00
parent 170282cace
commit 3160febb58
5 changed files with 18 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ use std::collections::HashMap;
* App types
* */
pub struct HttpAppConfig {
port: u8,
pub port: u16,
}
pub type HttpAppRouteFunction = Box<fn(HttpRequest) -> String>;