24 lines
555 B
Go
24 lines
555 B
Go
|
package profitbricks
|
||
|
|
||
|
// Endpoint is the base url for REST requests .
|
||
|
var Endpoint = "https://api.profitbricks.com/rest/v2"
|
||
|
|
||
|
// Username for authentication .
|
||
|
var Username string
|
||
|
|
||
|
// Password for authentication .
|
||
|
var Passwd string
|
||
|
|
||
|
// SetEndpoint is used to set the REST Endpoint. Endpoint is declared in config.go
|
||
|
func SetEndpoint(newendpoint string) string {
|
||
|
Endpoint = newendpoint
|
||
|
return Endpoint
|
||
|
}
|
||
|
|
||
|
// SetAuth is used to set Username and Passwd. Username and Passwd are declared in config.go
|
||
|
|
||
|
func SetAuth(u, p string) {
|
||
|
Username = u
|
||
|
Passwd = p
|
||
|
}
|