mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-02-04 01:04:33 +00:00
14 lines
363 B
Python
14 lines
363 B
Python
import tornado
|
|
|
|
# API request handler for /api/v1/lookup/call
|
|
class APILookupCallHandler(tornado.web.RequestHandler):
|
|
def get(self):
|
|
# todo
|
|
self.write("Hello, world")
|
|
|
|
# API request handler for /api/v1/lookup/sigref
|
|
class APILookupSIGRefHandler(tornado.web.RequestHandler):
|
|
def get(self):
|
|
# todo
|
|
self.write("Hello, world")
|