Files
Crimson-Gatekeeper/srv/server.go
2025-12-29 23:05:32 +08:00

21 lines
251 B
Go

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"))
}
/**
无名之辈
*/