Skip to content

Commit 2e07bbf

Browse files
authored
Merge pull request #10 from go-gorf/feature/health
minor update
2 parents 8c433a4 + 65b4b1d commit 2e07bbf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

conf.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func SetupApps() {
2727

2828
// Register apps
2929
func RegisterApps(r *gin.Engine) {
30-
internalUrls(r)
30+
registerInternalUrls(r)
3131
fmt.Println("Registering apps")
3232
for _, app := range Apps {
3333
app.Register(r)

urls.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ package gorf
22

33
import "github.com/gin-gonic/gin"
44

5-
func internalUrls(r *gin.Engine) {
5+
func registerInternalUrls(r *gin.Engine) {
66
r.GET("/health", Health)
77
}

0 commit comments

Comments
 (0)