Files
CouchPotatoServer/couchpotato/api/__init__.py
T
2011-02-13 01:58:56 +01:00

8 lines
96 B
Python

from flask import Module
api = Module(__name__)
@api.route('/')
def index():
return 'api'