minor enhancement to code format in go client (#11657)

This commit is contained in:
William Cheng
2022-02-19 13:11:28 +08:00
committed by GitHub
parent d030ac1b50
commit d530e1baec
37 changed files with 305 additions and 250 deletions

View File

@@ -27,7 +27,6 @@ type ApiAnyKeyRequest struct {
ApiService *UsageApiService
}
func (r ApiAnyKeyRequest) Execute() (map[string]interface{}, *http.Response, error) {
return r.ApiService.AnyKeyExecute(r)
}
@@ -155,7 +154,6 @@ type ApiBothKeysRequest struct {
ApiService *UsageApiService
}
func (r ApiBothKeysRequest) Execute() (map[string]interface{}, *http.Response, error) {
return r.ApiService.BothKeysExecute(r)
}
@@ -283,7 +281,6 @@ type ApiKeyInHeaderRequest struct {
ApiService *UsageApiService
}
func (r ApiKeyInHeaderRequest) Execute() (map[string]interface{}, *http.Response, error) {
return r.ApiService.KeyInHeaderExecute(r)
}
@@ -397,7 +394,6 @@ type ApiKeyInQueryRequest struct {
ApiService *UsageApiService
}
func (r ApiKeyInQueryRequest) Execute() (map[string]interface{}, *http.Response, error) {
return r.ApiService.KeyInQueryExecute(r)
}