Configurable axum server including Session, CORS, common security headers, and static file hosting.
```rust
struct Config;
impl mogh_server::ServerConfig for Config {
fn port(&self) -> u16 {
}
fn ssl_enabled(&self) -> bool {
}
fn ssl_key_file(&self) -> &str {
}
fn ssl_cert_file(&self) -> &str {
}
}
let app = Router::new()