6 "net/http"
7)
8
9func (history WithdrawHistoryResponse) Render(w http.ResponseWriter, r *http.Request) error {10 return nil
11}
12
Methods with unused receivers can be a symptom of unfinished refactoring or a bug. To keep the same method signature, omit the receiver name or '_' as it is unused.
func (f *Unix) Name() string {
return "unix"
}
func (_ *Unix) Name() string {
return "unix"
}
func (*Unix) Name() string {
return "unix"
}