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

18 lines
324 B
Go

package api
// NoteAPI スタートアップスクリプトAPI
type NoteAPI struct {
*baseAPI
}
// NewNoteAPI スタートアップスクリプトAPI作成
func NewNoteAPI(client *Client) *NoteAPI {
return &NoteAPI{
&baseAPI{
client: client,
FuncGetResourceURL: func() string {
return "note"
},
},
}
}