2020-05-12 13:37:28 +02:00
|
|
|
package cloud
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
2020-05-14 22:54:57 +02:00
|
|
|
// Service cloud specific services
|
2020-05-12 13:37:28 +02:00
|
|
|
type Service interface {
|
|
|
|
// Login login to cloud provider
|
|
|
|
Login(ctx context.Context, params map[string]string) error
|
|
|
|
}
|