1 package registry 2 3 type ErrGithubRegistryNotSupported struct { 4 } 5 6 func (s *ErrGithubRegistryNotSupported) Error() string { 7 return "github based registries are no longer supported, use OCI based registries instead, see https://github.com/devfile/registry-support" 8 } 9