diff options
Diffstat (limited to 'src/index.ts')
-rw-r--r-- | src/index.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/index.ts b/src/index.ts index 647038f..1327771 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,10 +1,10 @@ -import { createSession, fetchAccountFromDiscord, fetchAllLeaderboardsCategorized, fetchLeaderboard, fetchMemberLeaderboardSpots, fetchSession, finishedCachingRawLeaderboards, leaderboardUpdateMemberQueue, leaderboardUpdateProfileQueue, updateAccount } from './database' -import { fetchMemberProfile, fetchUser } from './hypixel' +import { createSession, fetchAccountFromDiscord, fetchAllLeaderboardsCategorized, fetchLeaderboard, fetchMemberLeaderboardSpots, fetchSession, finishedCachingRawLeaderboards, leaderboardUpdateMemberQueue, leaderboardUpdateProfileQueue, updateAccount } from './database.js' +import { fetchMemberProfile, fetchUser } from './hypixel.js' import rateLimit from 'express-rate-limit' -import * as constants from './constants' -import * as discord from './discord' +import * as constants from './constants.js' +import * as discord from './discord.js' import express from 'express' -import { getKeyUsage } from './hypixelApi' +import { getKeyUsage } from './hypixelApi.js' const app = express() |