UNPKG

@arsendoman/book-publisher-store

Version:

A Nest.js package for book publishing and storing

12 lines (10 loc) 238 B
import { AuthGuard } from '@nestjs/passport'; import { Injectable } from '@nestjs/common'; @Injectable() export class GoogleAuthGuard extends AuthGuard('google') { constructor() { super({ accessType: 'offline', }); } }