osu-wayback/api/_missing.py
2019-03-08 11:12:47 +01:00

12 lines
188 B
Python

from objects import glob
def handle(request):
print(request)
return callback()
def callback():
return {
"error": 404,
"message": "Missing api endpoint"
}