github.com/zooyer/miskit@v1.0.71/sdk/neeko/neeko_test.go (about) 1 package neeko 2 3 import ( 4 "context" 5 "testing" 6 ) 7 8 func TestClient_SystemInfo(t *testing.T) { 9 client := New() 10 info, err := client.SystemInfo(context.Background()) 11 if err != nil { 12 t.Fatal(err) 13 } 14 t.Log(info) 15 }