14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import { XCONFIG } from './x.config';
|
|
import { XApiConfiguration } from 'x-framework-identity-sdk';
|
|
|
|
/**
|
|
* Api Configuration
|
|
*/
|
|
export const XAPI_CONFIG = new XApiConfiguration({
|
|
//
|
|
baseApiPath: XCONFIG.baseUrl,
|
|
apiVersion: XCONFIG.apiVersion,
|
|
poweredByValue: XCONFIG.poweredValue,
|
|
revisionSecretKey: XCONFIG.secretKey,
|
|
});
|