mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Application interface * Application describe * Application list * Fix --output/-o flag * Test Run() * Tests on application pkg * Unit tests on kclient relative to application * comment * Add ComponentList method to Application * Project interface * Project CLI tests * Dharmit review
10 lines
242 B
Go
10 lines
242 B
Go
package project
|
|
|
|
type Client interface {
|
|
SetCurrent(projectName string) error
|
|
Create(projectName string, wait bool) error
|
|
Delete(projectName string, wait bool) error
|
|
List() (ProjectList, error)
|
|
Exists(projectName string) (bool, error)
|
|
}
|