17 lines
377 B
Python
17 lines
377 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
|
|
from pathlib import Path
|
|
|
|
class State():
|
|
def __init__(self) -> None:
|
|
self.app = App()
|
|
self.sql_handler = SQLite3FileHandler(Path("Test.db3"))
|
|
|
|
|
|
STATE = State()
|
|
STATE.app.main() |