make all imports nicer

This commit is contained in:
2025-07-24 14:22:28 +01:00
parent d07b9cf290
commit 1321af66cd
62 changed files with 242 additions and 227 deletions

View File

@@ -1,7 +1,7 @@
import { RefreshingAuthProvider, exchangeCode, type AccessToken } from "@twurple/auth";
import { createAuthRecord, deleteAuthRecord, getAuthRecord, updateAuthRecord } from "./db/dbAuth";
import { createAuthRecord, deleteAuthRecord, getAuthRecord, updateAuthRecord } from "db/dbAuth";
import logger from "./lib/logger";
import logger from "lib/logger";
import kleur from "kleur";
async function initAuth(userId: string, clientId: string, clientSecret: string, requestedIntents: string[], streamer: boolean): Promise<AccessToken> {