Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 312 Bytes

File metadata and controls

18 lines (14 loc) · 312 Bytes

go-amt

Client library to interact with Intel AMT api (via wsman)

Usage

connection := Connection{
    Host: "192.168.32.6",
    User: "admin",
    Pass: "yourreallyawesomepassword",
}
client, err := NewClient(&connection)
assert.NoError(t, err)

err = client.PowerOn()
assert.NoError(t, err)