From 25f9eb341584f9182ab3403db979fe56ae5a754d Mon Sep 17 00:00:00 2001 From: John Beisley Date: Sat, 26 Mar 2022 08:05:43 +0000 Subject: [PATCH] Use `any` instead of `interface{}` in v2alpha. --- v2alpha/soap/envelope/envelope.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2alpha/soap/envelope/envelope.go b/v2alpha/soap/envelope/envelope.go index 7c57273..dbd6934 100644 --- a/v2alpha/soap/envelope/envelope.go +++ b/v2alpha/soap/envelope/envelope.go @@ -44,7 +44,7 @@ type Action struct { // arguments. See https://pkg.go.dev/encoding/xml@go1.17.1#Marshal and // https://pkg.go.dev/encoding/xml@go1.17.1#Unmarshal for details on // annotating fields in the structure. - Args interface{} `xml:",any"` + Args any `xml:",any"` } // Write marshals a SOAP envelope to the writer. Errors can be from the writer