Files
HaishinKit.swift/Sources/Net/MIME.swift
T
2019-01-05 18:44:19 +09:00

10 lines
290 B
Swift

import Foundation
enum MIME: String {
case textPlain = "text/plain"
case textHtml = "text/html"
case applicationXMpegURL = "application/x-mpegURL"
case vndAppleMpegURL = "application/vnd.apple.mpegURL"
case videoMP2T = "video/MP2T"
}