qbtrade/pkg/interact/state.go

9 lines
128 B
Go
Raw Normal View History

2024-06-27 14:42:38 +00:00
package interact
type State string
const (
StatePublic State = "public"
StateAuthenticated State = "authenticated"
)