Files
FACULTATE-MESSENGER/messenger_gui/app/__init__.py
T
2024-01-13 12:59:19 +02:00

10 lines
359 B
Python

from .main_application import MainApplication
app = MainApplication()
'''
The 'app' package contains all the UI and network components to run the application'. This package contains the
following packages:
- http (tools to make HTTP requests to the API)
- models (schematics for the HTTP requests and user info validation)
- views (UI design)
'''