feat: backend service

This commit is contained in:
Ilia Denisov
2026-05-06 10:14:55 +03:00
committed by GitHub
parent 3e2622757e
commit f446c6a2ac
1486 changed files with 49720 additions and 266401 deletions
+9
View File
@@ -0,0 +1,9 @@
package integration_test
import "encoding/json"
// jsonUnmarshal is a tiny indirection so other test files can decode
// without importing encoding/json each time.
func jsonUnmarshal(raw []byte, v any) error {
return json.Unmarshal(raw, v)
}