bitbucket.org/Aishee/synsec@v0.0.0-20210414005726-236fc01a153d/pkg/apiclient/config.go (about)

     1  package apiclient
     2  
     3  import (
     4  	"net/url"
     5  
     6  	"github.com/go-openapi/strfmt"
     7  )
     8  
     9  type Config struct {
    10  	MachineID      string
    11  	Password       strfmt.Password
    12  	Scenarios      []string
    13  	URL            *url.URL
    14  	VersionPrefix  string
    15  	UserAgent      string
    16  	UpdateScenario func() ([]string, error)
    17  }