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

16 lines
414 B
Go

package metal
import (
"go.equinixmetal.net/infra9-metal-bridge/internal/metal/providers/emapi"
"go.equinixmetal.net/infra9-metal-bridge/internal/metal/providers/emgql"
)
// Config provides configuration for connecting to the metal provider.
type Config struct {
// EMGQL sets the provider to Equinix Metal GraphQL.
EMGQL emgql.Config
// EMAPI sets the provider to Equinix Metal API.
EMAPI emapi.Config
}