implemented verifiaction db

This commit is contained in:
Stephan D
2026-02-05 20:51:03 +01:00
parent 4639b2c610
commit f8a3bef2e6
12 changed files with 290 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
package verificationimp
import "fmt"
func wrap(err error, msg string) error {
return fmt.Errorf("%s: %w", msg, err)
}