12 lines
188 B
Python
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"
|
||
|
}
|