Files
2011-10-21 12:55:21 -04:00

18 lines
263 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from feedharvest import app
from flaskext.script import Manager, Command
manager = Manager(app)
@manager.command
def hello():
"""Hello World!"""
print r'\o/'
if __name__ == "__main__":
manager.run()