1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/royalpack/stars/api_discord_cv.py

16 lines
429 B
Python
Raw Normal View History

2020-06-22 17:27:11 +00:00
import royalnet.utils as ru
2020-02-08 00:49:07 +00:00
from royalnet.constellation.api import *
2019-11-29 19:05:09 +00:00
2020-02-08 00:49:07 +00:00
class ApiDiscordCvStar(ApiStar):
path = "/api/discord/cv/v1"
2019-11-29 19:05:09 +00:00
2020-03-09 20:21:07 +00:00
tags = ["discord"]
2020-06-22 17:27:11 +00:00
async def get(self, data: ApiData) -> ru.JSON:
"""Get the members status of a single Discord guild.
Equivalent to calling /cv in a chat."""
2019-12-29 23:07:48 +00:00
response = await self.interface.call_herald_event("discord", "discord_cv")
2020-02-08 00:49:07 +00:00
return response