bbgo_origin/pkg/interact/state.go
2022-01-14 13:31:31 +08:00

9 lines
128 B
Go

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