use kutil::http::*;
pub const INDEX: &str = "index";
pub const HTML_MEDIA_TYPE_STRING: &str = "text/html";
pub const JSON_MEDIA_TYPE_STRING: &str = "application/json";
pub const HTML_MEDIA_TYPE: MediaType = MediaType::new_fostered("text", "html");
pub const JSON_MEDIA_TYPE: MediaType = MediaType::new_fostered("application", "json");
pub const RENDERED_PAGE_MEDIA_TYPES: &[MediaTypeSelector] =
&[MediaTypeSelector::new_fostered("text", "html"), MediaTypeSelector::new_fostered("application", "json")];