traefik/vendor/github.com/sacloud/libsacloud/api/product_license.go
Ludovic Fernandez 139f280f35 ACME TLS ALPN
2018-07-03 12:44:04 +02:00

18 lines
371 B
Go

package api
// ProductLicenseAPI ライセンスプランAPI
type ProductLicenseAPI struct {
*baseAPI
}
// NewProductLicenseAPI ライセンスプランAPI作成
func NewProductLicenseAPI(client *Client) *ProductLicenseAPI {
return &ProductLicenseAPI{
&baseAPI{
client: client,
FuncGetResourceURL: func() string {
return "product/license"
},
},
}
}