Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender committed Sep 12, 2024
1 parent f19b65a commit cc1f91e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cmd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ func init() {
}

func startWebsocket(h *healthcheck.Healthcheck) error {
err := h.OpenWebsocket()
if err != nil {
return err
}
return nil
err := h.OpenWebsocket()
if err != nil {
return err
}
return nil
}

0 comments on commit cc1f91e

Please sign in to comment.