start minIO, refactored files into packages
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package ConnectionState
|
||||
|
||||
type ConnectionState uint8
|
||||
|
||||
const (
|
||||
Stranger ConnectionState = iota
|
||||
GroupFellow
|
||||
Friend
|
||||
GroupFriend
|
||||
)
|
||||
@@ -0,0 +1,11 @@
|
||||
package WsEventType
|
||||
|
||||
type WsEventType uint8
|
||||
|
||||
const (
|
||||
Authentication WsEventType = iota
|
||||
DirectMessage
|
||||
ConnectionCreated
|
||||
ConnectionDeleted
|
||||
ConnectionElevated
|
||||
)
|
||||
Reference in New Issue
Block a user