Files
Crimson-Gatekeeper/server.go

16 lines
229 B
Go
Raw Normal View History

2025-12-28 18:45:43 +08:00
package main
import (
"net/http"
"github.com/labstack/echo"
)
func main() {
e := echo.New()
e.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!")
})
e.Logger.Fatal(e.Start(":1323"))
}