dependencies dependencies cluster_StargazeModule cluster_StargazeModule_exports cluster_StargazeModule_imports cluster_StargazeModule_providers RepoModule RepoModule StargazeModule StargazeModule RepoModule->StargazeModule StargazeService StargazeService StargazeModule->StargazeService StargazeService StargazeService StargazeService->StargazeModule

File

src/stargaze/stargaze.module.ts

Providers

Imports

Exports

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

import { DbRepoWithStats } from "../repo/entities/repo.entity";
import { DbRepoToUserStargazers } from "../repo/entities/repo.to.user.stargazers.entity";
import { RepoModule } from "../repo/repo.module";
import { StargazeService } from "./stargaze.service";
import { RepoStargazeController } from "./repo-stargaze.controller";

@Module({
  imports: [TypeOrmModule.forFeature([DbRepoWithStats, DbRepoToUserStargazers], "ApiConnection"), RepoModule],
  controllers: [RepoStargazeController],
  providers: [StargazeService],
  exports: [StargazeService],
})
export class StargazeModule {}

results matching ""

    No results matching ""