You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from aiohttp import web
|
|
from utils.server import register_server_module
|
|
|
|
from server.route.base_api import register_route
|
|
|
|
def init(app: web.Application):
|
|
register_route(app)
|
|
|
|
register_server_module("base_api", init) |