2025-06-27 13:39:47 +03:00

9 lines
224 B
TypeScript

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