Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@saeedhajinasiri
Created April 15, 2021 15:51
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 saeedhajinasiri/c929c83b736d3ae142daf0249e1dae83 to your computer and use it in GitHub Desktop.
Save saeedhajinasiri/c929c83b736d3ae142daf0249e1dae83 to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { UsersController } from './users.controller.ts';
import { UsersService } from './users.service.ts';
@Module({
controllers: [UsersController],
providers: [UsersService]
})
export class UsersModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment