feat: initial commit
This commit is contained in:
9
internal/http/form/error.go
Normal file
9
internal/http/form/error.go
Normal file
@ -0,0 +1,9 @@
|
||||
package form
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
ErrFieldNotFound = errors.New("field not found")
|
||||
ErrUnexpectedValue = errors.New("unexpected value")
|
||||
ErrMissingValue = errors.New("missing value")
|
||||
)
|
Reference in New Issue
Block a user