mirror of
https://github.com/wassname/flask-bootstrap.git
synced 2026-06-27 16:10:14 +08:00
14 lines
191 B
Python
Executable File
14 lines
191 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from flaskext.script import Manager
|
|
|
|
from app import app
|
|
|
|
|
|
manager = Manager(app)
|
|
|
|
if __name__ == "__main__":
|
|
manager.run()
|