V2bX/conf/conf_test.go
2023-06-02 09:19:37 +08:00

9 lines
200 B
Go

package conf
import "testing"
func TestConf_LoadFromPath(t *testing.T) {
c := New()
t.Log(c.LoadFromPath("../example/config.yml.example"), c.NodesConfig[0].ControllerConfig.LimitConfig.IPLimit)
}