blob: 2e77900383f2847ef006d876b4d672de6054b882 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# coding=utf-8
from pysite.base_route import BaseView
__author__ = "Gareth Coles"
class IndexView(BaseView):
path = "/"
name = "index"
def get(self):
return "Coming soon:tm:"
|