powerdns-admin/run.py

7 lines
128 B
Python
Raw Normal View History

2015-12-13 09:34:12 +00:00
#!flask/bin/python
from app import app
2015-12-14 09:38:47 +00:00
from config import PORT
2015-12-13 09:34:12 +00:00
if __name__ == '__main__':
2015-12-14 09:38:47 +00:00
app.run(debug = True, port=PORT)