14 lines
451 B
Python
14 lines
451 B
Python
from typing import Any
|
|
from fastapi import APIRouter, Depends
|
|
|
|
from index import endpoints_index
|
|
# from events.services.cluster import ServicesEndpointRouterCluster
|
|
|
|
from api_validations.defaults.validations import CommonHeaders
|
|
from api_validations.response.pagination import PaginateOnly
|
|
from api_middlewares.token_provider import TokenProvider
|
|
|
|
|
|
# Create API router
|
|
services_endpoint_route = APIRouter(prefix="/services", tags=["Service Cluster"])
|