mirror of
https://github.com/docker/compose.git
synced 2026-06-24 18:18:27 +00:00
9 lines
189 B
Go
9 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
|
|
}
|