mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-15 19:00:19 +00:00
16 lines
431 B
Go
16 lines
431 B
Go
|
package restfuladapter
|
||
|
|
||
|
import (
|
||
|
"github.com/emicklei/go-restful/v3"
|
||
|
"k8s.io/kube-openapi/pkg/common"
|
||
|
)
|
||
|
|
||
|
// AdaptWebServices adapts a slice of restful.WebService into the common interfaces.
|
||
|
func AdaptWebServices(webServices []*restful.WebService) []common.RouteContainer {
|
||
|
var containers []common.RouteContainer
|
||
|
for _, ws := range webServices {
|
||
|
containers = append(containers, &WebServiceAdapter{ws})
|
||
|
}
|
||
|
return containers
|
||
|
}
|