Files
discord-aidolls/src/keys.ts
Kevin Dang c9dfd3671d NodeJS TypeScript Setup (#1)
* bot can login to discord

* changed node and npm to iron lts

* added typescript runnables

* more dev scripts

* readme update on scripts

* event handling skeleton

* fixed compiler target issue
2023-12-22 11:22:16 -08:00

7 lines
157 B
TypeScript

import { getEnvVar } from "./utils/env.js"
export const Keys = {
clientToken: getEnvVar('CLIENT_TOKEN')
} as const // readonly keys
export default Keys