Something went wrong. Try again.
because I got bored of customising my CV for every job
Something went wrong. Try again.
378 B · 11 lines
TypeScript
123456789101112import { UserModule } from "@cv/core";import { forwardRef, Module } from "@nestjs/common";import { AuthenticationModule } from "@/modules/authentication/authentication.module";import { MeResolver } from "./me.resolver";
@Module({ imports: [UserModule, forwardRef(() => AuthenticationModule)], providers: [MeResolver], exports: [],})export class CurrentUserModule {}