[chore]: Bump github.com/go-playground/form/v4 from 4.2.0 to 4.2.1 (#1994)

This commit is contained in:
dependabot[bot] 2023-07-21 14:22:13 +00:00 committed by GitHub
commit d53449ccb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 47 additions and 66 deletions

13
vendor/github.com/go-playground/form/v4/Makefile generated vendored Normal file
View file

@ -0,0 +1,13 @@
all: lint test bench
lint:
golangci-lint run --timeout 5m
test:
go test -covermode=atomic -race ./...
bench:
go test -bench=. -benchmem ./...
.PHONY: test lint bench
.DEFAULT_GOAL := all