...

Source file src/github.com/redhat-developer/odo/pkg/registry/errors.go

Documentation: github.com/redhat-developer/odo/pkg/registry

     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  

View as plain text