1
0
mirror of https://github.com/drone/drone-cli.git synced 2024-11-23 17:22:09 +01:00
drone-cli/common/config.go
2015-03-05 17:53:10 -08:00

16 lines
257 B
Go

package common
// A config structure is used to configure a build.
type Config struct {
Init Step
Clone Step
Build Step
Compose map[string]Step
Publish map[string]Step
Deploy map[string]Step
Notify map[string]Step
Matrix map[string][]string
}