Files
Tagger/Tagger.py
2025-09-17 06:46:05 +02:00

16 lines
352 B
Python

# Imports
import tkinter as tk
from tkinter import ttk
from src.gui.gui import App
from src.core.file_handler import list_files
from src.core.SQL_handler import SQLite3FileHandler
class State():
def __init__(self) -> None:
self.app = App()
self.sql_handler = SQLite3FileHandler(Path("Test.db3"))
STATE = State()
STATE.app.main()