7 lines
147 B
Python
7 lines
147 B
Python
|
from daemon import app
|
||
|
import auth, utils
|
||
|
|
||
|
app.logger.addHandler(utils.create_syslog_handler())
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
app.run(port=10222)
|