|
@@ -6,7 +6,6 @@ import (
|
|
|
|
|
|
//免费用户
|
|
|
type FreeUser struct {
|
|
|
- AllUsers map[*UserInfo]bool
|
|
|
Users map[*UserInfo]bool
|
|
|
Title_KeyDfa *KeyDfa
|
|
|
AreaUsers map[string]map[*UserInfo]bool
|
|
@@ -16,7 +15,6 @@ type FreeUser struct {
|
|
|
//
|
|
|
func NewFreeUser() *FreeUser {
|
|
|
return &FreeUser{
|
|
|
- AllUsers: map[*UserInfo]bool{},
|
|
|
Users: map[*UserInfo]bool{},
|
|
|
AreaUsers: map[string]map[*UserInfo]bool{},
|
|
|
SubtypeUsers: map[string]map[*UserInfo]bool{},
|