feat(api-sync): implement sync push endpoint with idempotency

This commit is contained in:
2026-04-06 00:53:36 +08:00
parent de1db459c2
commit ecf0d9ff03
6 changed files with 483 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Module } from "@nestjs/common";
import { PrismaModule } from "../prisma/prisma.module";
import { SyncController } from "./sync.controller";
import { SyncService } from "./sync.service";
@Module({
imports: [PrismaModule],
controllers: [SyncController],
providers: [SyncService]
})
export class SyncModule {}