Javelina/classes/pycord_guild.py

13 lines
192 B
Python

from dataclasses import dataclass
from bson import ObjectId
@dataclass
class PycordGuild:
_id: ObjectId
id: int
def __init__(self) -> None:
raise NotImplementedError()