fix(typo): root route HTML

This commit is contained in:
Julien Neuhart
2025-01-17 10:00:08 +01:00
parent 6478528ebc
commit 8e0cc7dd2f
+1 -1
View File
@@ -487,7 +487,7 @@ func (a *Api) Start() error {
a.srv.GET(
a.rootPath,
func(c echo.Context) error {
return c.HTML(http.StatusOK, `Hey, this Gotenberg has no UI, it's an API. Head to the <a href="https://gotenberg.dev">documentation</a> to learn how to interact with it 🚀`)
return c.HTML(http.StatusOK, `Hey, Gotenberg has no UI, it's an API. Head to the <a href="https://gotenberg.dev">documentation</a> to learn how to interact with it 🚀`)
},
)