Initial push

This commit is contained in:
2025-09-12 12:07:47 -05:00
parent 77a8ac4941
commit 9db77a221e
48 changed files with 1596 additions and 1 deletions

16
src/app.py Normal file
View File

@@ -0,0 +1,16 @@
# Python imports
# Lib imports
# Application imports
from window import Window
class Application:
def __init__(self):
super(Application, self).__init__()
def run(self):
win = Window()
win.start()