You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
300 B

from couchpotato.core.logger import CPLog
from flask import Flask, Module
from flask.helpers import url_for
from flask.templating import render_template
app = Flask(__name__)
log = CPLog(__name__)
web = Module(__name__, 'web')
@web.route('/')
def index():
return render_template('index.html')