qbtrade/pkg/types/plaintext.go
2024-06-27 22:42:38 +08:00

10 lines
110 B
Go

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