Files
decort-golang-sdk/pkg/cloudapi/locations/locations.go
2022-08-11 16:39:39 +03:00

16 lines
225 B
Go

package locations
import (
"github.com/rudecs/decort-sdk/interfaces"
)
type Locations struct {
client interfaces.Caller
}
func New(client interfaces.Caller) *Locations {
return &Locations{
client,
}
}