File size: 162 Bytes
1e92f2d | 1 2 3 4 5 6 | import { Injectable } from "@nestjs/common";
import { AuthGuard } from "@nestjs/passport";
@Injectable()
export class GoogleGuard extends AuthGuard("google") {}
|
1e92f2d | 1 2 3 4 5 6 | import { Injectable } from "@nestjs/common";
import { AuthGuard } from "@nestjs/passport";
@Injectable()
export class GoogleGuard extends AuthGuard("google") {}
|