Skip to content

Commit

Permalink
Add message types to harbormaster constants
Browse files Browse the repository at this point in the history
  • Loading branch information
goddenrich authored Nov 4, 2023
1 parent bfa6863 commit c793f68
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion constants/harbormaster.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down

0 comments on commit c793f68

Please sign in to comment.