mirror of https://github.com/minio/minio.git
9 lines
86 B
Go
9 lines
86 B
Go
|
package nsq
|
||
|
|
||
|
// states
|
||
|
const (
|
||
|
StateInit = iota
|
||
|
StateDisconnected
|
||
|
StateConnected
|
||
|
)
|