2025-02-18 21:20:14 +01:00
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
|
|
from bson import ObjectId
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
2025-02-16 13:41:23 +01:00
|
|
|
class PycordGuild:
|
2025-02-18 21:20:14 +01:00
|
|
|
_id: ObjectId
|
|
|
|
id: int
|
|
|
|
|
2025-02-16 13:41:23 +01:00
|
|
|
def __init__(self) -> None:
|
|
|
|
raise NotImplementedError()
|