mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
9 lines
264 B
Python
9 lines
264 B
Python
from royalnet.constellation.api import *
|
|
|
|
|
|
class ApiDiscordCvStar(ApiStar):
|
|
path = "/api/discord/cv/v1"
|
|
|
|
async def api(self, data: ApiData) -> dict:
|
|
response = await self.interface.call_herald_event("discord", "discord_cv")
|
|
return response
|