e927717fa0
Co-authored-by: alteredCoder <kevin@crowdsec.net> Co-authored-by: he2ss <hamza.essahely@gmail.com> Co-authored-by: Sebastien Blot <sebastien@crowdsec.net>
18 lines
315 B
Go
18 lines
315 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
|
|
PapiURL *url.URL
|
|
VersionPrefix string
|
|
UserAgent string
|
|
UpdateScenario func() ([]string, error)
|
|
}
|