use crate::http::{Request, Response}; pub type View = fn(Request) -> Response; pub enum Path { View { url: &'static str, view: View, name: &'static str, }, Include { url: &'static str, content: &'static [Path], }, }