10 lines
359 B
Python
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)
|
|
''' |