compose/context/cloud/api.go

10 lines
189 B
Go
Raw Normal View History

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