mirror of
https://github.com/luxfi/crypto.git
synced 2026-07-27 01:54:50 +00:00
14 lines
297 B
Go
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
|
|
}
|