16 lines
202 B
Go
16 lines
202 B
Go
package compute
|
|
|
|
import (
|
|
"github.com/rudecs/decort-sdk/interfaces"
|
|
)
|
|
|
|
type Compute struct {
|
|
client interfaces.Caller
|
|
}
|
|
|
|
func New(client interfaces.Caller) *Compute {
|
|
return &Compute{
|
|
client,
|
|
}
|
|
}
|