trove/trovedb/mime.py

6 lines
106 B
Python

from typing import NamedTuple
EXTENSIONS_MAP = {
"text/plain": ".txt",
"text/markdown": ".md",
}