mirror of
https://github.com/Xevion/trivia.git
synced 2025-12-06 11:16:43 -06:00
11 lines
131 B
Python
11 lines
131 B
Python
"""
|
|
wsgi.py
|
|
|
|
Simple launcher file for project.
|
|
"""
|
|
|
|
from trivia import app
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host="0.0.0.0")
|