import { Module } from "@nestjs/common"; import { MatchesController } from "./matches.controller"; import { MatchesService } from "./matches.service"; import { DatabaseModule } from "../../database/database.module"; @Module({ imports: [DatabaseModule], controllers: [MatchesController], providers: [MatchesService], exports: [MatchesService], }) export class MatchesModule {}