dbb420f79e
Co-authored-by: AlteredCoder Co-authored-by: erenJag
17 lines
290 B
Go
17 lines
290 B
Go
package apiclient
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/go-openapi/strfmt"
|
|
)
|
|
|
|
type Config struct {
|
|
MachineID string
|
|
Password strfmt.Password
|
|
Scenarios []string
|
|
URL *url.URL
|
|
VersionPrefix string
|
|
UserAgent string
|
|
UpdateScenario func() ([]string, error)
|
|
}
|