qbtrade/pkg/types/plaintext.go

10 lines
110 B
Go
Raw Normal View History

2024-06-27 14:42:38 +00:00
package types
type PlainText interface {
PlainText() string
}
type Stringer interface {
String() string
}