16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
|
import { Injectable } from "@nestjs/common";
|
||
|
import { TrpcService } from "@server/trpc/trpc.service";
|
||
|
import { TrainContentService } from "./trainContent.service";
|
||
|
|
||
|
@Injectable()
|
||
|
export class TrainContentRouter {
|
||
|
constructor(
|
||
|
private readonly trpc: TrpcService,
|
||
|
private readonly trainContentService: TrainContentService,
|
||
|
) { }
|
||
|
|
||
|
router = this.trpc.router({
|
||
|
|
||
|
})
|
||
|
|
||
|
}
|