aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/app.py
blob: f19eb03b546477bad02e4231afd2f03fadb9490c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import flask

mapp = flask.Flask(__name__)
mapp.debug = True


@mapp.route("/")
def index():
    return flask.render_template("index.html", section="home")


@mapp.route("/certs")
def certs():
    return flask.render_template("certs.html", section="certs")