13 lines
210 B
TypeScript
13 lines
210 B
TypeScript
'use server';
|
|
|
|
import { env } from '@/config/env';
|
|
|
|
export async function getTelegramUser() {
|
|
if (process.env.NODE_ENV !== 'production')
|
|
return {
|
|
id: env.__DEV_TELEGRAM_ID,
|
|
};
|
|
|
|
return null;
|
|
}
|