spiderweb/wsgi.py

7 lines
88 B
Python
Raw Permalink Normal View History

2020-10-25 18:07:35 +00:00
import bjoern
2021-05-06 15:52:00 +00:00
from webapp import app
2020-02-08 09:14:30 +00:00
2020-10-25 18:07:35 +00:00
2023-01-07 22:15:43 +00:00
bjoern.listen(app, "0.0.0.0", 8080)
2020-10-25 18:07:35 +00:00
bjoern.run()