Skip to content

Instantly share code, notes, and snippets.

View mtander's full-sized avatar

Mary Welch mtander

View GitHub Profile

my HelloModule:

import { Module } from '@nestjs/common';
import { APP_GUARD } from '@nestjs/core';
import { HelloService } from './hello.service';
import { HelloController } from './hello.controller';
import { AuthGuard } from '../guards/auth.guard';

@Module({