rpc
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.

15 lines
223 B

package site
import (
"testing"
)
func Test_GetConfigItem(t *testing.T) {
siteid := "100065"
dbname := "test1_tetele_com"
key := "percentage"
res, err := GetConfigItem(siteid, dbname, key)
t.Log(res)
t.Log(err)
}