mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
12 lines
160 B
Go
12 lines
160 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
func index(c echo.Context) error {
|
||
|
return c.String(http.StatusOK, "RealTime Hog 3000")
|
||
|
}
|