mirror of
https://github.com/kennethreitz-archive/travis-light.git
synced 2026-06-05 07:16:12 +00:00
18 lines
250 B
Python
Executable File
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() |