fix: keep prisma client in go.mod

This commit is contained in:
2025-01-08 19:58:41 +00:00
parent bdfbbe4e1a
commit 2ed0335aa1
2 changed files with 11 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
//go:build tools
package tools
import (
// Importiere Prisma Client Go als Tool, nicht als Bibliothek.
_ "github.com/steebchen/prisma-client-go"
)