aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/index.py
blob: 48a98fac666db3343fef628da23fffe19ab0f851 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# coding=utf-8
from pysite.base_route import BaseView


class IndexView(BaseView):
    path = "/"
    name = "index"

    def get(self):
        return "Coming soon:tm:"