staff_data/apps/server/src/transform/transform.router.ts

14 lines
358 B
TypeScript
Raw Normal View History

2024-09-03 20:29:51 +08:00
import { Injectable } from '@nestjs/common';
import { TrpcService } from '@server/trpc/trpc.service';
import { TransformService } from './transform.service';
@Injectable()
export class TransformRouter {
constructor(private readonly trpc: TrpcService, private readonly transformService: TransformService) { }
router = this.trpc.router({
});
}