From 6c4524551336753d6c2c3cd124061020a5f814bc Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Mon, 4 Sep 2023 14:24:58 +0530 Subject: Initial trial - Hello World Message --- main.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 main.go (limited to 'main.go') diff --git a/main.go b/main.go new file mode 100644 index 0000000..6b1e80f --- /dev/null +++ b/main.go @@ -0,0 +1,22 @@ +package main + +import ( + "net/http" + "github.com/labstack/echo/v4" +) + +type HelloWorld struct { + Message string `json:"message"` +} + +func main() { + e := echo.New() + e.GET("/hello", Greetings) + e.Logger.Fatal(e.Start(":3000")) +} + +func Greetings(c echo.Context) error { + return c.JSON(http.StatusOK, HelloWorld{ + Message: "Hello World", + }) +} -- cgit v1.2.3