2025-09-11 18:59:22 +02:00
|
|
|
# Imports
|
2025-09-05 10:29:23 +02:00
|
|
|
import tkinter as tk
|
|
|
|
|
from tkinter import ttk
|
|
|
|
|
|
2025-09-08 13:22:10 +02:00
|
|
|
from src.gui.gui import main
|
2025-09-11 18:59:22 +02:00
|
|
|
from src.core.file_handler import list_files
|
2025-09-05 10:29:23 +02:00
|
|
|
|
2025-09-11 18:59:22 +02:00
|
|
|
# Functions
|
|
|
|
|
main()
|
|
|
|
|
a = list_files("./src/core")
|
|
|
|
|
print(a)
|