Files
flask-rest/manage-haystack.py
Kenneth Reitz 6b013314cb manage test app
2011-08-02 23:52:55 -04:00

15 lines
227 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from flaskext.script import Manager
from haystack import app
manager = Manager(app)
@manager.command
def hello():
print "hello"
if __name__ == "__main__":
manager.run()