//
//  Constants.swift
//  webview-ext
//
//  Created by Morten Anton Bach Sjøgren on 13/03/2018.
//  Copyright © 2018 Nota. All rights reserved.
//

import Foundation

struct Constants {
    static let customURLScheme = "x-local"
    
    static let mimeType: [String: String] = [
        "html": "text/html",
        "htm": "text/html",
        "xhtml": "text/html",
        "xhtm": "text/html",
        "css": "text/css",
        "gif": "image/gif",
        "jpeg": "image/jpeg",
        "jpg": "image/jpeg",
        "js": "text/javascript",
        "otf": "application/vnd.ms-opentype",
        "png": "image/png",
        "svg": "image/svg+xml",
        "ttf": "application/x-font-ttf",
    ]
}
