6 lines
106 B
Python
6 lines
106 B
Python
from typing import NamedTuple
|
|
|
|
EXTENSIONS_MAP = {
|
|
"text/plain": ".txt",
|
|
"text/markdown": ".md",
|
|
}
|