mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2025-12-15 12:46:06 -05:00
* 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
7 lines
157 B
TypeScript
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 |