Effective Date: 2/2/2025
We collect and store only the specific information necessary for core functionalities:
- User IDs, guild IDs, and channel IDs
- Text content specifically provided for reminders, AFK statuses, and birthdays
| from __future__ import annotations | |
| from typing import TYPE_CHECKING, Any, Callable, TypeVar | |
| import discord | |
| if TYPE_CHECKING: | |
| from index import Akiko | |
| from Manager.database import AkikoRecordClass |