mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-22 10:20:39 +00:00
Add Step type
This commit is contained in:
parent
f20822d6f8
commit
fb9f59c853
14
pkg/plugin/types.go
Normal file
14
pkg/plugin/types.go
Normal 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
|
||||||
|
}
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user