Files
duck-stain-yolo/app/main.py
bartool 090865af76 Initial MVP application skeleton
Add PySide6 camera UI, YOLO/Tesseract detection pipeline, capture metadata, configuration, and project gitignore.
2026-05-07 00:18:38 +02:00

12 lines
202 B
Python

from __future__ import annotations
import sys
from app.config import AppConfig
from app.main_window import run_app
def main() -> None:
app_config = AppConfig()
sys.exit(run_app(app_config))