export function normalizeDiscordToken(raw?: string | null): string | undefined { if (!raw) return undefined; const trimmed = raw.trim(); if (!trimmed) return undefined; return trimmed.replace(/^Bot\s+/i, ""); }