mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
7 lines
131 B
Python
Executable file
7 lines
131 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from advlabdb import create_app
|
|
|
|
if __name__ == "__main__":
|
|
app = create_app()
|
|
app.run(debug=True)
|