Something went wrong. Try again.
because I got bored of customising my CV for every job
Something went wrong. Try again.
TypeScript
1234567891011121314151617181920import { ClockService, UuidFactoryService } from "@cv/core";import { Module } from "@nestjs/common";import { CursorService } from "./cursor.service";import { ErrorCode } from "./error-code.enum";import { PaginationService } from "./pagination.service";
// Register the ErrorCode enum (this is a side effect import)ErrorCode;
@Module({ providers: [ PaginationService, CursorService, UuidFactoryService, ClockService, ], exports: [PaginationService, CursorService, UuidFactoryService, ClockService],})export class BaseModule {}