From 3b69ff353f4e5f71b3021847471f07f7fb8f369c Mon Sep 17 00:00:00 2001 From: Nora Trapp Date: Fri, 11 Aug 2023 10:40:00 -0700 Subject: [PATCH] Return realmID in String format from / --- router/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/router.go b/router/router.go index ff842a0..c4a5794 100644 --- a/router/router.go +++ b/router/router.go @@ -45,7 +45,7 @@ func RunRouter( e.Use(otelecho.Middleware("echo-router")) e.GET("/", func(c echo.Context) error { - return c.JSON(http.StatusOK, map[string]interface{}{"realmID": realmID}) + return c.JSON(http.StatusOK, map[string]interface{}{"realmID": realmID.String()}) }) e.POST("/req", func(c echo.Context) error {