mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-06 21:17:43 +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)
|