1
|
# Copyright (C) 2021 jahoti <jahoti@tilde.team>
|
2
|
# Licensing information is collated in the `copyright` file
|
3
|
|
4
|
"""
|
5
|
Our helpful little stand-in for the Internet
|
6
|
"""
|
7
|
|
8
|
catalog = {
|
9
|
'http://gotmyowndoma.in': (302, {'location': 'http://gotmyowndoma.in/index.html'}, b''),
|
10
|
'http://gotmyowndoma.in/': (302, {'location': 'http://gotmyowndoma.in/index.html'}, b''),
|
11
|
'http://gotmyowndoma.in/index.html': (200, {}, 'data/pages/gotmyowndomain.html'),
|
12
|
'https://gotmyowndoma.in': (302, {'location': 'https://gotmyowndoma.in/index.html'}, b''),
|
13
|
'https://gotmyowndoma.in/': (302, {'location': 'https://gotmyowndoma.in/index.html'}, b''),
|
14
|
'https://gotmyowndoma.in/index.html': (200, {}, 'data/pages/gotmyowndomain_https.html')
|
15
|
}
|