Skip to content

Commit

Permalink
rename v1health to v1_health
Browse files Browse the repository at this point in the history
  • Loading branch information
juancwu committed Dec 16, 2024
1 parent 959bd30 commit a8807b9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend/internal/v1/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ import (
func SetupRoutes(s interfaces.CoreServer) {
e := s.GetEcho()
g := e.Group("/api/v1")
v1health.SetupHealthcheckRoutes(g, s)
v1_health.SetupHealthcheckRoutes(g, s)
}
4 changes: 2 additions & 2 deletions backend/internal/v1/v1_health/healthcheck.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1health
package v1_health

import (
"KonferCA/SPUR/common"
Expand All @@ -12,7 +12,7 @@ import (
)

/*
V1 healthchekc endpoint handler.
V1 healthcheck endpoint handler.
*/
func (h *Handler) handleHealthCheck(c echo.Context) error {
report := HealthReport{
Expand Down
2 changes: 1 addition & 1 deletion backend/internal/v1/v1_health/healthcheck_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1health
package v1_health

import (
"KonferCA/SPUR/common"
Expand Down
2 changes: 1 addition & 1 deletion backend/internal/v1/v1_health/routes.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1health
package v1_health

import (
"KonferCA/SPUR/internal/interfaces"
Expand Down
2 changes: 1 addition & 1 deletion backend/internal/v1/v1_health/types.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1health
package v1_health

import (
"KonferCA/SPUR/internal/interfaces"
Expand Down

0 comments on commit a8807b9

Please sign in to comment.