17 lines
315 B
Go
17 lines
315 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package fingerprint
|
|
|
|
import log "github.com/hashicorp/go-hclog"
|
|
|
|
type BridgeFingerprint struct {
|
|
StaticFingerprinter
|
|
|
|
logger log.Logger
|
|
}
|
|
|
|
func NewBridgeFingerprint(logger log.Logger) Fingerprint {
|
|
return &BridgeFingerprint{logger: logger}
|
|
}
|