bbgo/pkg/types/plaintext.go

10 lines
110 B
Go
Raw Normal View History

package types
type PlainText interface {
PlainText() string
}
type Stringer interface {
String() string
}