feat(api-task): implement task crud with tag filters

This commit is contained in:
2026-04-05 00:01:28 +08:00
parent 62b0514da7
commit 8f6ff38a32
10 changed files with 722 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Global, Module } from "@nestjs/common";
import { PrismaService } from "./prisma.service";
@Global()
@Module({
providers: [PrismaService],
exports: [PrismaService]
})
export class PrismaModule {}