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