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.
|
package subject |
|
|
|
// NetAccount 已认证的长连接用户 |
|
type NetAccount struct { |
|
Id int64 |
|
UserName string |
|
Client *NetClient |
|
} |
|
|
|
func NewNetAccount() { |
|
|
|
}
|
|
|