mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Init package * Fix starter not found * More unit tests * More doc * Review * Determine backend upfront
12 lines
323 B
Go
12 lines
323 B
Go
package catalog
|
|
|
|
import (
|
|
"github.com/redhat-developer/odo/pkg/kclient"
|
|
)
|
|
|
|
type Client interface {
|
|
GetDevfileRegistries(registryName string) ([]Registry, error)
|
|
ListDevfileComponents(registryName string) (DevfileComponentTypeList, error)
|
|
SearchComponent(client kclient.ClientInterface, name string) ([]string, error)
|
|
}
|