mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
16 lines
229 B
Go
16 lines
229 B
Go
// HarborLogout.go
|
|
package HarborAPI
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (a HarborAPI) HarborLogout() (int, error) {
|
|
|
|
response, err := http.Get(a.basePath + "/logout")
|
|
|
|
defer response.Body.Close()
|
|
|
|
return response.StatusCode, err
|
|
}
|