We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b34d2d5 commit dff5698Copy full SHA for dff5698
controller/controller.go
@@ -20,14 +20,14 @@ func Run() {
20
return
21
}
22
23
+ router.Use(stats.RequestStats())
24
+
25
startController()
26
heatController()
27
disqualificationController()
28
resultController()
29
registrationController()
30
- router.Use(stats.RequestStats())
-
31
router.GET("/actuator", actuator)
32
router.GET("/stats", func(c *gin.Context) {
33
c.JSON(http.StatusOK, stats.Report())
0 commit comments