Skip to content

Instantly share code, notes, and snippets.

View retheviper's full-sized avatar
🏠
Working from home

Youngbin Kim retheviper

🏠
Working from home
View GitHub Profile
@retheviper
retheviper / MimeTypes.kt
Last active July 15, 2024 15:11 — forked from dptsolutions/MimeTypes.kt
Standard MIME type constants ready to use in a Kotlin project
/**
* See [Media Types](https://www.iana.org/assignments/media-types/media-types.xhtml) of IANA.
*/
object MimeTypes {
enum class Application(val extensions: Array<String>, val mimeType: String) {
/** AbiWord document */
ABI_WORD(arrayOf(".abw"), "application/x-abiword"),
/** Archive document (multiple files embedded) */