mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
13 lines
256 B
Go
13 lines
256 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
portainer "github.com/portainer/portainer/api"
|
||
|
)
|
||
|
|
||
|
func (n *portainerClientImp) Status() (status portainer.Status, err error) {
|
||
|
err = n.doJSONWithToken("status", http.MethodGet, http.Header{}, nil, &status)
|
||
|
return
|
||
|
}
|