bbgo/pkg/interact/state.go

9 lines
128 B
Go
Raw Normal View History

package interact
type State string
const (
StatePublic State = "public"
StateAuthenticated State = "authenticated"
)