mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 04:15:28 +02:00
style(proxy): fix function name (#4970)
This commit is contained in:
parent
c04bbb5775
commit
ac7d819620
9 changed files with 12 additions and 12 deletions
|
@ -10,8 +10,8 @@ import (
|
|||
"strconv"
|
||||
)
|
||||
|
||||
// GetResponseAsJSONOBject returns the response content as a generic JSON object
|
||||
func GetResponseAsJSONOBject(response *http.Response) (map[string]interface{}, error) {
|
||||
// GetResponseAsJSONObject returns the response content as a generic JSON object
|
||||
func GetResponseAsJSONObject(response *http.Response) (map[string]interface{}, error) {
|
||||
responseData, err := getResponseBodyAsGenericJSON(response)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue