import { Module } from '@nestjs/common';
import { GoogleauthService } from './googleauth.service';
import { GoogleauthController } from './googleauth.controller';

@Module({
  controllers: [GoogleauthController],
  providers: [GoogleauthService],
})
export class GoogleauthModule {}
