Files
Kenneth Reitz a944936fcf *.py
2012-06-20 01:02:15 -04:00

18 lines
250 B
Python
Executable File

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