13 lines
249 B
Python
13 lines
249 B
Python
|
import tornado.gen
|
||
|
import tornado.web
|
||
|
|
||
|
from common.web import requestsManager
|
||
|
|
||
|
|
||
|
class handler(requestsManager.asyncRequestHandler):
|
||
|
@tornado.web.asynchronous
|
||
|
@tornado.gen.engine
|
||
|
def asyncGet(self):
|
||
|
#self.set_status(404)
|
||
|
self.write("Not yet")
|