mirror of
https://github.com/traefik/traefik.git
synced 2025-11-28 22:21:36 +01:00
19 lines
290 B
Go
19 lines
290 B
Go
package api
|
|
|
|
// BridgeAPI ブリッジAPI
|
|
type BridgeAPI struct {
|
|
*baseAPI
|
|
}
|
|
|
|
// NewBridgeAPI ブリッジAPI作成
|
|
func NewBridgeAPI(client *Client) *BridgeAPI {
|
|
return &BridgeAPI{
|
|
&baseAPI{
|
|
client: client,
|
|
FuncGetResourceURL: func() string {
|
|
return "bridge"
|
|
},
|
|
},
|
|
}
|
|
}
|