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.
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
路由模块
|
|
定义 API 端点
|
|
"""
|
|
|
|
from api.routes.health import router as health_router
|
|
from api.routes.ocr import router as ocr_router
|
|
|
|
__all__ = ["health_router", "ocr_router"]
|