mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-05 16:18:04 +08:00
12 lines
170 B
Go
12 lines
170 B
Go
package web
|
|
|
|
import "github.com/labstack/echo/v4"
|
|
|
|
func NewEchoServer() *echo.Echo {
|
|
e := echo.New()
|
|
e.Debug = true
|
|
e.HidePort = true
|
|
e.HideBanner = true
|
|
return e
|
|
}
|