ApiHandler.py 146 B

1234567
  1. from handlers.HandlerBase import BaseHandler
  2. class ApiHandler(BaseHandler):
  3. def post(self):
  4. # print(self.request.body)
  5. pass