1234567891011121314 |
- package system_setting_test
- import (
- "surveyService/service/system_setting"
- "testing"
- )
- func TestGet(t *testing.T) {
- t.Run("ok", func(t *testing.T) {
- keys := []string{"test", "test2"}
- systemSettings := system_setting.Get(keys)
- t.Log(systemSettings)
- })
- }
|