mirror of
https://github.com/kristoferssolo/LU-bookstore.git
synced 2025-10-21 18:00:34 +00:00
13 lines
139 B
Python
Executable File
13 lines
139 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from ui.app import App
|
|
|
|
|
|
def main() -> None:
|
|
app = App()
|
|
app.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|