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