12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
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 {}
|