Skip to content

Commit

Permalink
Fix merge conflict issues
Browse files Browse the repository at this point in the history
  • Loading branch information
benhoyt committed Aug 28, 2023
1 parent efbdf4d commit 158ced4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions internals/cli/cmd_notify.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ data fields.
`

type cmdNotify struct {
clientMixin
client *client.Client

RepeatAfter time.Duration `long:"repeat-after"`
Positional struct {
Key string `positional-arg-name:"<key>" required:"1"`
Expand All @@ -47,7 +48,9 @@ func init() {
ArgsHelp: map[string]string{
"--repeat-after": "If set, allow the notice to repeat after this duration",
},
Builder: func() flags.Commander { return &cmdNotify{} },
New: func(opts *CmdOptions) flags.Commander {
return &cmdNotify{client: opts.Client}
},
})
}

Expand Down

0 comments on commit 158ced4

Please sign in to comment.