mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 08:55:43 +03:00
17 lines
316 B
Go
17 lines
316 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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}
|
|
}
|