api.go 189 B

123456789
  1. package cloud
  2. import "context"
  3. // Service cloud specific services
  4. type Service interface {
  5. // Login login to cloud provider
  6. Login(ctx context.Context, params map[string]string) error
  7. }