mirror of https://github.com/logos-co/open-law.git
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()
|