blob: 403e5452ecd183df00c686090618bb4832668c40 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# coding=utf-8
# External Libraries
from werkzeug.wrappers import Response
class Index:
path = ["/", "/index"]
def get(self):
return Response("Coming soon:tm:")
|