1 package registry 2 3 import "github.com/redhat-developer/odo/pkg/api" 4 5 // DevfileStackList lists all the Devfile Stacks 6 type DevfileStackList struct { 7 DevfileRegistries []api.Registry 8 Items []api.DevfileStack 9 } 10 11 // TypesWithDetails is the list of project types in devfile registries, and their associated devfiles 12 type TypesWithDetails map[string][]api.DevfileStack 13