mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-10 14:55:50 +00:00
10 lines
156 B
Python
10 lines
156 B
Python
#!/user/bin/env python
|
|
from app import create_app
|
|
from app import commands
|
|
|
|
app = create_app()
|
|
commands.init(app)
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|