You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
196 B

package session
import (
"sync"
)
// NetAccount 已认证的长连接用户
type NetAccount struct {
Id int64
UserName string
Avatar string
Client *NetClient
Lock *sync.Mutex
}