mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 12:25:53 +02:00
19 lines
365 B
Go
19 lines
365 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
|
|
RegistrationToken string
|
|
UpdateScenario func() ([]string, error)
|
|
}
|