Skip to content

Instantly share code, notes, and snippets.

@iMichaelOwolabi
Created April 29, 2020 20:01
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 iMichaelOwolabi/afada4f6a89ee485a3a5704905352f1a to your computer and use it in GitHub Desktop.
Save iMichaelOwolabi/afada4f6a89ee485a3a5704905352f1a to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { GoogleStrategy } from './google.strategy'
@Module({
imports: [],
controllers: [AppController],
providers: [AppService, GoogleStrategy],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment