unlist most endpoints
This commit is contained in:
parent
e82d7b6727
commit
ca02c9a731
@ -50,7 +50,8 @@ class AI(FastAPI):
|
|||||||
}
|
}
|
||||||
|
|
||||||
for endpoint, handler in self.endpoints.items():
|
for endpoint, handler in self.endpoints.items():
|
||||||
app.add_api_route(f"/{endpoint}", handler, methods=["GET", "POST"])
|
app.add_api_route(f"/{endpoint}", handler, methods=["GET", "POST"],
|
||||||
|
include_in_schema=False)
|
||||||
|
|
||||||
|
|
||||||
async def respond_via_webhook(self, data: ValidHookSongRequest, originalRequest: Request):
|
async def respond_via_webhook(self, data: ValidHookSongRequest, originalRequest: Request):
|
||||||
|
@ -119,7 +119,8 @@ class Karma(FastAPI):
|
|||||||
}
|
}
|
||||||
|
|
||||||
for endpoint, handler in self.endpoints.items():
|
for endpoint, handler in self.endpoints.items():
|
||||||
app.add_api_route(f"/{endpoint}", handler, methods=["POST"])
|
app.add_api_route(f"/{endpoint}", handler, methods=["POST"],
|
||||||
|
include_in_schema=False)
|
||||||
|
|
||||||
|
|
||||||
async def top_karma_handler(self, request: Request, data: ValidTopKarmaRequest | None = None):
|
async def top_karma_handler(self, request: Request, data: ValidTopKarmaRequest | None = None):
|
||||||
|
@ -73,7 +73,8 @@ class LastFM(FastAPI):
|
|||||||
}
|
}
|
||||||
|
|
||||||
for endpoint, handler in self.endpoints.items():
|
for endpoint, handler in self.endpoints.items():
|
||||||
app.add_api_route(f"/{endpoint}", handler, methods=["POST"])
|
app.add_api_route(f"/{endpoint}", handler, methods=["POST"],
|
||||||
|
include_in_schema=False)
|
||||||
|
|
||||||
async def artist_by_name_handler(self, data: ValidArtistSearchRequest):
|
async def artist_by_name_handler(self, data: ValidArtistSearchRequest):
|
||||||
"""
|
"""
|
||||||
|
@ -36,7 +36,8 @@ class Transcriptions(FastAPI):
|
|||||||
}
|
}
|
||||||
|
|
||||||
for endpoint, handler in self.endpoints.items():
|
for endpoint, handler in self.endpoints.items():
|
||||||
app.add_api_route(f"/{endpoint}", handler, methods=["POST"])
|
app.add_api_route(f"/{endpoint}", handler, methods=["POST"],
|
||||||
|
include_in_schema=False)
|
||||||
|
|
||||||
async def get_episodes_handler(self, data: ValidShowEpisodeListRequest):
|
async def get_episodes_handler(self, data: ValidShowEpisodeListRequest):
|
||||||
"""
|
"""
|
||||||
|
@ -42,7 +42,8 @@ class XC(FastAPI):
|
|||||||
app.add_api_websocket_route(f"/{endpoint}/", handler)
|
app.add_api_websocket_route(f"/{endpoint}/", handler)
|
||||||
|
|
||||||
for endpoint, handler in self.endpoints.items():
|
for endpoint, handler in self.endpoints.items():
|
||||||
app.add_api_route(f"/{endpoint}", handler, methods=["POST"])
|
app.add_api_route(f"/{endpoint}", handler, methods=["POST"],
|
||||||
|
include_in_schema=False)
|
||||||
|
|
||||||
# async def put_ws_handler(self, ws: WebSocket):
|
# async def put_ws_handler(self, ws: WebSocket):
|
||||||
# await ws.accept()
|
# await ws.accept()
|
||||||
|
@ -27,7 +27,8 @@ class YT(FastAPI):
|
|||||||
}
|
}
|
||||||
|
|
||||||
for endpoint, handler in self.endpoints.items():
|
for endpoint, handler in self.endpoints.items():
|
||||||
app.add_api_route(f"/{endpoint}", handler, methods=["POST"])
|
app.add_api_route(f"/{endpoint}", handler, methods=["POST"],
|
||||||
|
include_in_schema=False)
|
||||||
|
|
||||||
async def yt_video_search_handler(self, data: ValidYTSearchRequest):
|
async def yt_video_search_handler(self, data: ValidYTSearchRequest):
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user