2024-09-07 04:35:35 +00:00
|
|
|
import identify_file_type
|
2024-09-08 18:42:30 +00:00
|
|
|
from log import create_rich_logger
|
|
|
|
|
from typer import Typer
|
2024-09-06 02:47:44 +00:00
|
|
|
|
2024-09-07 01:09:23 +00:00
|
|
|
app = Typer()
|
|
|
|
|
VERSION = "0.1.0-alpha"
|
|
|
|
|
logger = create_rich_logger()
|
2024-09-06 02:47:44 +00:00
|
|
|
|
2024-09-07 04:35:35 +00:00
|
|
|
app.add_typer(identify_file_type.app, name="identify_file_type")
|
2024-09-06 02:47:44 +00:00
|
|
|
|
2024-09-07 01:09:23 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
|
app()
|