import { registerAs } from '@nestjs/config';

export default registerAs('notification', () => ({
  tg_bot_url: process.env.TELEGRAM_BOT_URL,
  tg_api_token: process.env.TELEGRAM_API_TOKEN,
}));
