mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 12:30:58 +00:00
10 lines
342 B
TypeScript
10 lines
342 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('ebirr', () => ({
|
|
baseUrl: process.env.EBIRR_BASE_URL || '',
|
|
merchantCode: process.env.EBIRR_MERCHANT_CODE || '',
|
|
secretKey: process.env.EBIRR_SECRET_KEY || '',
|
|
notifyUrl: process.env.EBIRR_NOTIFY_URL || '',
|
|
returnUrl: process.env.EBIRR_RETURN_URL || '',
|
|
}));
|