PowerDNS-Admin/run.py
2015-12-14 16:38:47 +07:00

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)