11 lines
130 B
Go
11 lines
130 B
Go
package ConnectionState
|
|
|
|
type ConnectionState uint8
|
|
|
|
const (
|
|
Stranger ConnectionState = iota
|
|
GroupFellow
|
|
Friend
|
|
GroupFriend
|
|
)
|