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
+10
View File
@@ -0,0 +1,10 @@
package testenv
import "os"
// writeFileFn is a tiny indirection so other files in this package can
// write fixtures without re-declaring os.WriteFile and to keep test
// hooks centralised.
func writeFileFn(path string, content []byte) error {
return os.WriteFile(path, content, 0o600)
}