mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
8 lines
402 B
Python
8 lines
402 B
Python
class Checkpoints(webapp2.RequestHandler):
|
|
def get(self):
|
|
self.response.write(json.dumps({"meta": {"code": 400,
|
|
"errorType": "paramError",
|
|
"errorDetail": "Parameter 'api_key' is missing"
|
|
},
|
|
"response": {}
|
|
})) |