|
@@ -4,7 +4,7 @@ import (
|
|
|
"common"
|
|
|
|
|
|
"github.com/labstack/echo"
|
|
|
- "github.com/labstack/echo/engine/fasthttp"
|
|
|
+ "github.com/labstack/echo/engine/standard"
|
|
|
)
|
|
|
|
|
|
func main() {
|
|
@@ -12,5 +12,5 @@ func main() {
|
|
|
e.SetRenderer(common.Template)
|
|
|
common.InitRoutes(e)
|
|
|
common.InitPostgres()
|
|
|
- e.Run(fasthttp.New(":8080"))
|
|
|
+ e.Run(standard.New(":8080"))
|
|
|
}
|