mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Add server flag to odo login * Add unit tests * Catch but ignore the error for Complete * Create factory method for KubernetesClient
6 lines
117 B
Go
6 lines
117 B
Go
package auth
|
|
|
|
type Client interface {
|
|
Login(server, username, password, token, caAuth string, skipTLS bool) error
|
|
}
|