mirror of
https://github.com/traefik/traefik.git
synced 2025-11-28 22:21:36 +01:00
19 lines
324 B
Go
19 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"
|
|
},
|
|
},
|
|
}
|
|
}
|