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