You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/globals/globals.go

24 lines
578 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package globals
import (
"context"
"net/netip"
)
// ControllerExtension defines the interface implemented
// by the enterprise controller extension. This type
// can be used to pass the controller extension into
// handlers and repositories.
type ControllerExtension interface {
Start(context.Context) error
}
// This is an interface satisfied by net.DefaultResolver but can be replaced for
// tests
type NetIpResolver interface {
LookupNetIP(context.Context, string, string) ([]netip.Addr, error)
}