Initial commit
This commit is contained in:
commit
ff50ea6784
12 changed files with 509 additions and 0 deletions
16
main.py
Normal file
16
main.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import sys
|
||||
from PyQt6.QtWidgets import QApplication
|
||||
from models.database import Database
|
||||
from controllers.auth_controller import AuthController
|
||||
|
||||
|
||||
def main():
|
||||
app = QApplication(sys.argv)
|
||||
database = Database()
|
||||
controller = AuthController(database)
|
||||
controller.show()
|
||||
sys.exit(app.exec())
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue