Implemented Oauth in frontend and fixed it in backend

This commit is contained in:
Mawoka
2022-06-11 18:09:47 +02:00
parent 39dce66b78
commit 03a76a448f
6 changed files with 88 additions and 25 deletions
+1
View File
@@ -1,6 +1,7 @@
from fastapi import APIRouter
from classquiz.oauth import google, github
router = APIRouter()
router.include_router(google.router, prefix="/google")
router.include_router(github.router, prefix="/github")