We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c433a4 + 65b4b1d commit 2e07bbfCopy full SHA for 2e07bbf
2 files changed
conf.go
@@ -27,7 +27,7 @@ func SetupApps() {
27
28
// Register apps
29
func RegisterApps(r *gin.Engine) {
30
- internalUrls(r)
+ registerInternalUrls(r)
31
fmt.Println("Registering apps")
32
for _, app := range Apps {
33
app.Register(r)
urls.go
@@ -2,6 +2,6 @@ package gorf
2
3
import "github.com/gin-gonic/gin"
4
5
-func internalUrls(r *gin.Engine) {
+func registerInternalUrls(r *gin.Engine) {
6
r.GET("/health", Health)
7
}
0 commit comments