mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-06-06 20:17:36 +00:00
10 lines
290 B
Swift
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"
|
|
}
|