1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-08 14:42:27 +08:00

refactor: make errInvalidStruct exported, change error.go to struct_internal.go

This commit is contained in:
dudaodong
2023-03-15 14:58:34 +08:00
parent 4eaff47d38
commit 534c7a0abc
2 changed files with 4 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
package structutil
import "fmt"
func errInvalidStruct(v any) error {
return fmt.Errorf("invalid struct %v", v)
}