Skip to content

Instantly share code, notes, and snippets.

@job25721
Last active January 21, 2022 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save job25721/0fc5c44d27f55b155c92178469872e42 to your computer and use it in GitHub Desktop.
Save job25721/0fc5c44d27f55b155c92178469872e42 to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { JsonPlaceholderService } from 'src/services/jsonPlacehodlerService';
import { UserResolver } from './user.resolver';
import { UserSerivce } from './user.service';
@Module({
imports: [],
providers: [UserResolver, UserSerivce, JsonPlaceholderService],
})
export class UserModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment