package main import "net/url" func checkEmpty(f url.Values, path string) bool { return !f.Has(path) || f.Get(path) == "" }