open-law/wsgi.py

10 lines
156 B
Python
Raw Normal View History

2023-04-20 13:10:16 +00:00
#!/user/bin/env python
from app import create_app
from app import commands
app = create_app()
commands.init(app)
if __name__ == "__main__":
app.run()