提交 cfddc75c 编写于 作者: programor_guo's avatar programor_guo

config file modify

上级 3a01ee99
...@@ -165,21 +165,21 @@ type config struct { ...@@ -165,21 +165,21 @@ type config struct {
} }
Notification struct { Notification struct {
GroupCreated struct { GroupCreated struct {
conversation Conversation `yaml:"conversation"` Conversation PConversation `yaml:"conversation"`
offlinePush OfflinePush `yaml:"offlinePush"` OfflinePush POfflinePush `yaml:"offlinePush"`
defaultTips DefaultTips `yaml:"defaultTips"` DefaultTips PDefaultTips `yaml:"defaultTips"`
} }
GroupInfoChanged struct { GroupInfoChanged struct {
conversation Conversation `yaml:"conversation"` Conversation PConversation `yaml:"conversation"`
offlinePush OfflinePush `yaml:"offlinePush"` OfflinePush POfflinePush `yaml:"offlinePush"`
defaultTips DefaultTips `yaml:"defaultTips"` DefaultTips PDefaultTips `yaml:"defaultTips"`
} }
ApplyJoinGroup struct { ApplyJoinGroup struct {
conversation Conversation `yaml:"conversation"` Conversation PConversation `yaml:"conversation"`
offlinePush OfflinePush `yaml:"offlinePush"` OfflinePush POfflinePush `yaml:"offlinePush"`
defaultTips DefaultTips `yaml:"defaultTips"` DefaultTips PDefaultTips `yaml:"defaultTips"`
} }
} }
Demo struct { Demo struct {
...@@ -200,18 +200,18 @@ type config struct { ...@@ -200,18 +200,18 @@ type config struct {
} }
} }
} }
type Conversation struct { type PConversation struct {
ConversationChanged bool `yaml:"conversationChanged"` ConversationChanged bool `yaml:"conversationChanged"`
UnreadCount bool `yaml:"unreadCount"` UnreadCount bool `yaml:"unreadCount"`
} }
type OfflinePush struct { type POfflinePush struct {
PushSwitch bool `yaml:"switch"` PushSwitch bool `yaml:"switch"`
Title string `yaml:"title"` Title string `yaml:"title"`
Desc string `yaml:"desc"` Desc string `yaml:"desc"`
Ext string `yaml:"ext"` Ext string `yaml:"ext"`
} }
type DefaultTips struct { type PDefaultTips struct {
Tips string `yaml:"tips"` Tips string `yaml:"tips"`
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册