16 lines
225 B
Go
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,
|
|
}
|
|
}
|