mirror of
https://github.com/kennethreitz-archive/flask-rest.git
synced 2026-06-05 15:30:18 +00:00
15 lines
227 B
Python
Executable File
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() |