19 lines
433 B
Python
19 lines
433 B
Python
import time
|
|
|
|
import disnake
|
|
|
|
from utils import LimitedSizeDict
|
|
|
|
intents = disnake.Intents.default()
|
|
intents.message_content = True
|
|
intents.members = True
|
|
client = disnake.Client(intents=intents)
|
|
|
|
command_cooldowns = LimitedSizeDict()
|
|
command_locks = LimitedSizeDict()
|
|
idle_tracker = {"is_idle": False, "last_used": time.time()}
|
|
kill = {"transcript": False}
|
|
message_responses = LimitedSizeDict()
|
|
players = {}
|
|
start_time = time.time()
|