osu-wayback/api/missing.py
2019-03-07 14:04:54 +01:00

14 lines
247 B
Python

from objects import glob
allowed_args = ["file_hash", "file_version", "timestamp"]
def handle(request):
print(request)
return callback()
def callback():
return {
"error": 404,
"message": "Missing api endpoint"
}