Installation
Last updated
Was this helpful?
npm install @nestjstools/clockor
yarn add @nestjstools/clockRegister the module:
import { Module } from '@nestjs/common';
import { ClockModule } from '@nestjstools/clock';
@Module({
imports: [
ClockModule.forRoot(), // global by default
],
})
export class AppModule {}You can also use .forFeature() if needed.
Last updated
Was this helpful?
Was this helpful?