Files
crypto/address/formatting/prefixed_stringer.go
T

14 lines
297 B
Go

// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package formatting
import "fmt"
// PrefixedStringer extends a stringer that adds a prefix
type PrefixedStringer interface {
fmt.Stringer
PrefixedString(prefix string) string
}