diff --git a/ecs/jskult-webapp/src/controller/bio_download.py b/ecs/jskult-webapp/src/controller/bio_api.py similarity index 99% rename from ecs/jskult-webapp/src/controller/bio_download.py rename to ecs/jskult-webapp/src/controller/bio_api.py index 5b5bc6e4..9107b109 100644 --- a/ecs/jskult-webapp/src/controller/bio_download.py +++ b/ecs/jskult-webapp/src/controller/bio_api.py @@ -1,4 +1,4 @@ -"""生物由来ファイルダウンロード APIRoute""" +"""生物由来照会 APIRoute""" import datetime from typing import Optional, Union diff --git a/ecs/jskult-webapp/src/main.py b/ecs/jskult-webapp/src/main.py index 7d65e130..174f097a 100644 --- a/ecs/jskult-webapp/src/main.py +++ b/ecs/jskult-webapp/src/main.py @@ -5,7 +5,7 @@ from fastapi.staticfiles import StaticFiles from starlette import status import src.static as static -from src.controller import (bio, bio_download, healthcheck, login, logout, +from src.controller import (bio, bio_api, healthcheck, login, logout, master_mainte, menu, root, ultmarc) from src.core import task from src.error.exception_handler import http_exception_handler @@ -27,9 +27,9 @@ app.include_router(menu.router, prefix='/menu') app.include_router(bio.router, prefix='/bio') # アルトマークデータ照会のルーター app.include_router(ultmarc.router, prefix='/ultmarc') -# 生物由来のダウンロード用APIルーター。 +# 生物由来照会のAPIルーター。 # クライアントから非同期呼出しされるため、共通ルーターとは異なる扱いとする。 -app.include_router(bio_download.router, prefix='/bio') +app.include_router(bio_api.router, prefix='/bio') # マスタメンテ app.include_router(master_mainte.router, prefix='/masterMainte') # ヘルスチェック用のルーター