Add fsutil and mime information

This commit is contained in:
Andrew Mulbrook 2026-03-26 00:33:29 -05:00
parent 94d00c94d4
commit 5df3c81417
2 changed files with 206 additions and 0 deletions

6
trovedb/mime.py Normal file
View file

@ -0,0 +1,6 @@
from typing import NamedTuple
EXTENSIONS_MAP = {
"text/plain": ".txt",
"text/markdown": ".md",
}