aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/api/index.py
blob: 5111162c8a3c459519a5abee7be4eb8c1eefd683 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from pysite.base_route import APIView
from pysite.constants import ErrorCodes


class IndexView(APIView):
    path = "/"
    name = "api.index"

    def get(self):
        return self.error(ErrorCodes.unknown_route)