macro_rules! resource_content_type {
    ( text ) => { ... };
    ( html ) => { ... };
    ( css ) => { ... };
    ( js ) => { ... };
    ( json ) => { ... };
    ( xml ) => { ... };
    ( png ) => { ... };
    ( jpeg ) => { ... };
    ( svg ) => { ... };
    ( icon ) => { ... };
    ( font_ttf ) => { ... };
    ( font_otf ) => { ... };
    ( font_woff ) => { ... };
    ( font_woff2 ) => { ... };
    ( unknown ) => { ... };
}