bbgo_origin/pkg/interact/state.go

9 lines
128 B
Go
Raw Normal View History

2022-01-14 03:43:27 +00:00
package interact
type State string
const (
StatePublic State = "public"
StateAuthenticated State = "authenticated"
)