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