mirror of
https://git.wownero.com/lza_menace/neroswap.git
synced 2024-08-15 01:03:24 +00:00
8 lines
176 B
Python
8 lines
176 B
Python
from app.factory import create_app
|
|
|
|
# todo - system-wide logging
|
|
# todo - system status middleware and maintenance
|
|
app = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|