From fb9f59c853bd62aa8803c3263389798538e38de6 Mon Sep 17 00:00:00 2001 From: Don Date: Fri, 6 Sep 2019 16:32:38 -0700 Subject: [PATCH] Add Step type --- pkg/plugin/types.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pkg/plugin/types.go diff --git a/pkg/plugin/types.go b/pkg/plugin/types.go new file mode 100644 index 0000000..0cd3526 --- /dev/null +++ b/pkg/plugin/types.go @@ -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 + } +)