mirror of
https://github.com/cwinfo/yggdrasil-map
synced 2024-11-09 23:00:26 +00:00
8 lines
134 B
Plaintext
8 lines
134 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
from flup.server.fcgi import WSGIServer
|
||
|
from web import app
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
WSGIServer(app).run()
|