mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-30 09:57:19 +00:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
|
|
import { Global, Module } from '@nestjs/common';
|
||
|
|
import { LicenseService } from '@licensing/service';
|
||
|
|
|
||
|
|
@Global()
|
||
|
|
@Module({
|
||
|
|
providers: [LicenseService],
|
||
|
|
exports: [LicenseService],
|
||
|
|
})
|
||
|
|
export class LicenseModule {}
|