Initial commit chat microservice

This commit is contained in:
2022-10-19 17:51:51 +02:00
parent f30f9090b3
commit bdd1a655d4
10 changed files with 50 additions and 761 deletions

15
chat-service/app/app.go Normal file
View File

@ -0,0 +1,15 @@
package app
import (
"net/http"
"github.com/labstack/echo/v4"
)
func Run() {
e := echo.New()
e.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!")
})
e.Logger.Fatal(e.Start(":1323"))
}