aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/info/index.py
blob: 371a5353f113d9badf99a10dd1da16642cac92d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# coding=utf-8
from flask import redirect

from pysite.base_route import RouteView


class IndexView(RouteView):
    path = "/info/"
    name = "info"

    def get(self):
        return redirect("/info/resources")