osu-wayback/api/_missing.py

12 lines
188 B
Python
Raw Normal View History

2019-03-07 14:04:54 +01:00
from objects import glob
def handle(request):
print(request)
return callback()
def callback():
return {
"error": 404,
"message": "Missing api endpoint"
}