Add Step type

This commit is contained in:
Don 2019-09-06 16:32:38 -07:00
parent f20822d6f8
commit fb9f59c853
1 changed files with 14 additions and 0 deletions

14
pkg/plugin/types.go Normal file
View File

@ -0,0 +1,14 @@
// Copyright (c) 2019, the Drone Plugins project authors.
// Please see the AUTHORS file for details. All rights reserved.
// Use of this source code is governed by an Apache 2.0 license that can be
// found in the LICENSE file.
package plugin
type (
// Step represents the currently running step within the stage.
Step struct {
Name string
Number int
}
)