0
0
mirror of https://github.com/thegeeklab/wp-plugin-go.git synced 2024-09-21 08:12:44 +02:00
wp-plugin-go/pkg/plugin/types.go
2019-09-06 16:32:38 -07:00

15 lines
367 B
Go

// 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
}
)