16 lines
414 B
Go
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
|
|
}
|