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.
 
 
 

14 lines
260 B

package model
const (
// UserSettingArchive up主新投稿提醒
UserSettingArchive = 1
// UserSettingLive 主播开播提醒
UserSettingLive = 2
)
// Settings .
var Settings = map[int]int{
UserSettingArchive: SwitchOn,
UserSettingLive: SwitchOn,
}