You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
runner-go/environ/provider/provider.go

35 lines
808 B
Go

// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Polyform License
// that can be found in the LICENSE file.
// Package provider provides environment variables to
// a pipeline.
package provider
import (
"context"
"git.awesome-for.me/liuzhiguo/drone-go/drone"
)
// Request provides arguments for requesting a environment
// variables from an environment Provider.
type Request struct {
Repo *drone.Repo
Build *drone.Build
}
// Variable defines an environment variable.
type Variable struct {
Name string
Data string
Mask bool
}
// Provider is the interface that must be implemented by an
// environment provider.
type Provider interface {
// List returns a list of environment variables.
List(context.Context, *Request) ([]*Variable, error)
}