gecko/utils/formatting/custom_stringer.go

10 lines
262 B
Go

// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package formatting
// CustomStringer ...
type CustomStringer struct{ Stringer func() string }
func (cs CustomStringer) String() string { return cs.Stringer() }