localcache

This commit is contained in:
withchao 2024-01-10 11:57:46 +08:00
parent f0e5c587ad
commit 03e15766ab
2 changed files with 19 additions and 0 deletions

View File

@ -110,3 +110,10 @@ func InitConfig(configFolderPath string) error {
return initConfig(&Config.Notification, NotificationFileName, configFolderPath)
}
// todo test
func init() {
Config.LocalCache.Friend.Topic = "friend"
Config.LocalCache.Friend.SlotNum = 500
Config.LocalCache.Friend.SlotSize = 20000
}

View File

@ -16,6 +16,8 @@ package config
import (
_ "embed"
"fmt"
"gopkg.in/yaml.v3"
"reflect"
"testing"
@ -115,3 +117,13 @@ func TestInitConfig(t *testing.T) {
})
}
}
func TestName(t *testing.T) {
Config.LocalCache.Friend.Topic = "friend"
Config.LocalCache.Friend.SlotNum = 500
Config.LocalCache.Friend.SlotSize = 20000
data, _ := yaml.Marshal(&Config)
fmt.Println(string(data))
}