From c793f68bf92e3530d225a2c7a3003cb17c060c98 Mon Sep 17 00:00:00 2001 From: Richard Godden <7768980+goddenrich@users.noreply.github.com> Date: Sat, 4 Nov 2023 13:11:43 +0000 Subject: [PATCH] Add message types to harbormaster constants --- constants/harbormaster.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/constants/harbormaster.go b/constants/harbormaster.go index e9e8334..9fdde73 100644 --- a/constants/harbormaster.go +++ b/constants/harbormaster.go @@ -18,8 +18,12 @@ const ( type HarbormasterMessageType string const ( - HarbormasterPass HarbormasterMessageType = "pass" + HarbormasterAbort HarbormasterMessageType = "abort" HarbormasterFail HarbormasterMessageType = "fail" + HarbormasterPass HarbormasterMessageType = "pass" + HarbormasterPause HarbormasterMessageType = "pause" + HarbormasterRestart HarbormasterMessageType = "restart" + HarbormasterResume HarbormasterMessageType = "resume" HarbormasterWork HarbormasterMessageType = "work" )