mirror of
https://github.com/docker/compose.git
synced 2025-06-30 18:34:25 +02:00
10 lines
189 B
Go
10 lines
189 B
Go
package cloud
|
|
|
|
import "context"
|
|
|
|
// Service cloud specific services
|
|
type Service interface {
|
|
// Login login to cloud provider
|
|
Login(ctx context.Context, params map[string]string) error
|
|
}
|