Nikos Spiropoulos
Nikos Spiropoulos
Exactly the same is happening to me.
but my question is this, since the script tag is loaded on index.html file inside the public folder, and the index.html loads only once, why is it necessary to load...
Another way of applying middlewares to grouped routes is the following : ``` testGroup := router.Group("/test").Use(middleWare()) testGroup.GET("/a", controllers.Testa) testGroup.GET("/b", controllers.Testb) testGroup.GET("/c", controllers.Testc) ```