add __init__ files

This commit is contained in:
WorldTeacher
2024-06-28 08:16:25 +02:00
parent a3beae5999
commit f13c8cfe61
4 changed files with 7 additions and 0 deletions

3
main.py Normal file
View File

@@ -0,0 +1,3 @@
hello_world = lambda: "Hello, World!"
print(hello_world())

1
src/logic/__init__.py Normal file
View File

@@ -0,0 +1 @@
__help__ = "This package contains the logic of the application."

1
src/ui/__init__.py Normal file
View File

@@ -0,0 +1 @@
from .sources

View File

@@ -0,0 +1,2 @@
# all .ui files and their corresponding python files are stored here.
# The corresponding classes used in the program are defined here and used in the ui dir.