bbgo/pkg/types/plaintext.go

10 lines
110 B
Go

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