...

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

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

     1  package project
     2  
     3  type Client interface {
     4  	SetCurrent(projectName string) error
     5  	Create(projectName string, wait bool) error
     6  	Delete(projectName string, wait bool) error
     7  	List() (ProjectList, error)
     8  	Exists(projectName string) (bool, error)
     9  }
    10  

View as plain text