Remove ill-advised code

This commit is contained in:
jdl 2025-03-30 11:14:41 +02:00
parent 833093ebee
commit 060426fd64

View File

@ -18,7 +18,7 @@ type FormScanFunc func(name, formVal string, val any) (bool, error)
type FormScanner struct {
form url.Values
err error
ScanFunc FormScanFunc
ScanFunc FormScanFunc // TODO: Remove?
}
func NewFormScanner(form url.Values) *FormScanner {