Add new resources, extend fields in config

This commit is contained in:
stSolo
2022-10-06 12:53:21 +03:00
parent 5fd450382c
commit 8712561853
39 changed files with 1784 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
package kvmx86
import "github.com/rudecs/decort-sdk/interfaces"
type KVMX86 struct {
client interfaces.Caller
}
func New(client interfaces.Caller) *KVMX86 {
return &KVMX86{
client: client,
}
}