Files
bridge/internal/metal/providers/emgql/config.go
2023-07-01 00:04:52 +00:00

13 lines
285 B
Go

package emgql
// Config provides configuration for connecting to the Equinix Metal API provider.
type Config struct {
// BaseURL is the baseurl to use when connecting to the Equinix Metal API Provider.
BaseURL string
}
func (c Config) Populated() bool {
return c.BaseURL != ""
}