mirror of
https://github.com/kemko/PowerDNS-Admin.git
synced 2026-01-01 15:45:45 +03:00
7 lines
128 B
Python
Executable File
7 lines
128 B
Python
Executable File
#!flask/bin/python
|
|
from app import app
|
|
from config import PORT
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug = True, port=PORT)
|