mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-02-04 01:04:33 +00:00
8 lines
182 B
Python
8 lines
182 B
Python
import tornado
|
|
|
|
# API request handler for /api/v1/spot (POST)
|
|
class APISpotHandler(tornado.web.RequestHandler):
|
|
def post(self):
|
|
# todo
|
|
self.write("Hello, world")
|