blob: 4d9e63eef22a0da04d44d4ce6a198b5cde54efc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env python3
import tornado.ioloop
from pyapd import app, config
if __name__ == "__main__":
config = config.Config()
apd = app.App(config)
apd.listen(8888)
tornado.ioloop.IOLoop.current().start()
|