add initial application structure with configuration, logging, and health check endpoints
This commit is contained in:
9
internal/middleware/middleware.go
Normal file
9
internal/middleware/middleware.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package middleware
|
||||
|
||||
import (
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
func Register(e *echo.Echo) {
|
||||
e.HideBanner = true
|
||||
}
|
||||
Reference in New Issue
Block a user