dependencies dependencies cluster_StarModule cluster_StarModule_exports cluster_StarModule_providers cluster_StarModule_imports RepoModule RepoModule StarModule StarModule RepoModule->StarModule StarService StarService StarModule->StarService StarService StarService StarService->StarModule

File

src/star/star.module.ts

Providers

Controllers

Imports

Exports

import { Module } from "@nestjs/common";
import { TypeOrmModule } from "@nestjs/typeorm";

import { DbRepoWithStats } from "../repo/entities/repo.entity";
import { DbRepoToUserStars } from "../repo/entities/repo.to.user.stars.entity";
import { RepoModule } from "../repo/repo.module";
import { StarService } from "./star.service";
import { RepoStarController } from "./repo-star.controller";

@Module({
  imports: [TypeOrmModule.forFeature([DbRepoWithStats, DbRepoToUserStars], "ApiConnection"), RepoModule],
  controllers: [RepoStarController],
  providers: [StarService],
  exports: [StarService],
})
export class StarModule {}

results matching ""

    No results matching ""