initializer service deployed and tested
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
__all__ = []
|
||||
9
api_services/api_builds/auth-service/endpoints/index.py
Normal file
9
api_services/api_builds/auth-service/endpoints/index.py
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
endpoints_index: dict = {
|
||||
"Name": "d538deb4-38f4-4913-a1af-bbef14cf6873",
|
||||
"Slot1": "c0f5ccb1-1e56-4653-af13-ec0bf5e6aa51",
|
||||
"Slot2": "034a7eb7-0186-4f48-bb8c-165c429ad5c1",
|
||||
"Slot3": "ec1f3ec3-3f28-4eaf-b89a-c463632c0b90",
|
||||
"Slot4": "2cf99f10-72f0-4c2b-98be-3082d67b950d",
|
||||
"Slot5": "15c24c6c-651b-4c5d-9c2b-5c6c6c6c6c6c",
|
||||
}
|
||||
15
api_services/api_builds/auth-service/endpoints/routes.py
Normal file
15
api_services/api_builds/auth-service/endpoints/routes.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
|
||||
def get_routes() -> list[APIRouter]:
|
||||
return []
|
||||
|
||||
|
||||
def get_safe_endpoint_urls() -> list[tuple[str, str]]:
|
||||
return [
|
||||
("/", "GET"),
|
||||
("/docs", "GET"),
|
||||
("/redoc", "GET"),
|
||||
("/openapi.json", "GET"),
|
||||
("/metrics", "GET"),
|
||||
]
|
||||
Reference in New Issue
Block a user