zipssion/source/app.py
2024-09-08 12:47:26 -05:00

9 lines
168 B
Python

# to delete
from typer import Typer
import identify_file_type
app = Typer()
VERSION = "0.1.0-alpha"
app.add_typer(identify_file_type.app, name="identify_file_type")