10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
/* eslint-disable unicorn/prevent-abbreviations */
|
|
import { z } from 'zod';
|
|
|
|
export const envSchema = z.object({
|
|
BOT_TOKEN: z.string(),
|
|
BOT_URL: z.string(),
|
|
});
|
|
|
|
export const env = envSchema.parse(process.env);
|