import { Module } from "@nestjs/common"; import { PrismaModule } from "../prisma/prisma.module"; import { GoogleController } from "./google.controller"; import { GoogleService } from "./google.service"; @Module({ imports: [PrismaModule], controllers: [GoogleController], providers: [GoogleService], }) export class GoogleModule {}