type versionDiscoveryHandler …
func (r *versionDiscoveryHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { … }
func (r *versionDiscoveryHandler) getDiscovery(gv schema.GroupVersion) (*discovery.APIVersionHandler, bool) { … }
func (r *versionDiscoveryHandler) setDiscovery(gv schema.GroupVersion, discovery *discovery.APIVersionHandler) { … }
func (r *versionDiscoveryHandler) unsetDiscovery(gv schema.GroupVersion) { … }
type groupDiscoveryHandler …
func (r *groupDiscoveryHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { … }
func (r *groupDiscoveryHandler) getDiscovery(group string) (*discovery.APIGroupHandler, bool) { … }
func (r *groupDiscoveryHandler) setDiscovery(group string, discovery *discovery.APIGroupHandler) { … }
func (r *groupDiscoveryHandler) unsetDiscovery(group string) { … }
func splitPath(path string) []string { … }