traefik/vendor/github.com/sacloud/libsacloud/api/license.go

19 lines
303 B
Go
Raw Normal View History

2018-07-03 10:44:04 +00:00
package api
// LicenseAPI ライセンスAPI
type LicenseAPI struct {
*baseAPI
}
// NewLicenseAPI ライセンスAPI作成
func NewLicenseAPI(client *Client) *LicenseAPI {
return &LicenseAPI{
&baseAPI{
client: client,
FuncGetResourceURL: func() string {
return "license"
},
},
}
}