Skip to content

Commit

Permalink
拆出服务模块
Browse files Browse the repository at this point in the history
  • Loading branch information
xfgryujk committed Feb 14, 2022
1 parent 3b556fc commit e40f151
Show file tree
Hide file tree
Showing 12 changed files with 426 additions and 411 deletions.
4 changes: 1 addition & 3 deletions api/base.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-

import json

import tornado.web


# noinspection PyAbstractClass
class ApiHandler(tornado.web.RequestHandler):
class ApiHandler(tornado.web.RequestHandler): # noqa
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.json_args = None
Expand Down
Loading

0 comments on commit e40f151

Please sign in to comment.