* Refactor backend folder structure Co-authored-by: Charles Bochet <charles@twenty.com> * fix tests * fix * move yoga hooks --------- Co-authored-by: Charles Bochet <charles@twenty.com>
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
import { ConfigurableModuleBuilder } from '@nestjs/common';
|
|
|
|
export const { ConfigurableModuleClass, MODULE_OPTIONS_TOKEN } =
|
|
new ConfigurableModuleBuilder({
|
|
moduleName: 'Environment',
|
|
})
|
|
.setClassMethodName('forRoot')
|
|
.build();
|