mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00: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)
|