mirror of
https://github.com/duke-git/lancet.git
synced 2026-02-04 12:52:28 +08:00
8 lines
113 B
Go
8 lines
113 B
Go
package structs
|
|
|
|
import "fmt"
|
|
|
|
func errInvalidStruct(v any) error {
|
|
return fmt.Errorf("invalid struct %v", v)
|
|
}
|