shimoda.m@nds-tyo.co.jp a5e1d141bf Revert "feat: コントローラー関数をすべてasync(シングルスレッド)に変更"
This reverts commit 7d30331cdabdcea5c6d61f796d2eaee470b398cc.
2023-08-21 15:16:54 +09:00

12 lines
380 B
Python

from fastapi import APIRouter
from fastapi.responses import RedirectResponse
from starlette import status
router = APIRouter()
@router.get('/')
def redirect_to_user_login():
# ルートパスへのアクセスは、顧客ユーザーログイン画面にリダイレクトさせる
return RedirectResponse(url='/login/userlogin', status_code=status.HTTP_303_SEE_OTHER)