refactor: reorganize modules and add Linux build tooling

This commit is contained in:
2026-08-09 12:41:08 +08:00
parent 86024fa81d
commit 5cc5fd92ed
1461 changed files with 4054 additions and 4724 deletions

View File

@@ -0,0 +1,15 @@
package member
const (
ROLE_MEMBER = 0 // 普通会员
ROLE_MASTER = 1 // 管理员
ROLE_SUPER_MASTER = 2 // 超级管理员
ROLE_CREATEOR = 10 // 创建者
DefaultMemberLimit = 500 // 群组最大成员数
DefaultEnableAnyJoin bool = true // 是否开启无需验证即可加入群组
)
var (
filed string = "passport_identity as identity,nickname,avatar,sex,province,city,area,sign"
)