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

19 lines
424 B
Go

package api
// ProductPrivateHostAPI 専有ホストプランAPI
type ProductPrivateHostAPI struct {
*baseAPI
}
// NewProductPrivateHostAPI 専有ホストプランAPI作成
func NewProductPrivateHostAPI(client *Client) *ProductPrivateHostAPI {
return &ProductPrivateHostAPI{
&baseAPI{
client: client,
// FuncGetResourceURL
FuncGetResourceURL: func() string {
return "product/privatehost"
},
},
}
}