初始化提交

This commit is contained in:
des
2025-12-28 18:45:43 +08:00
commit 960d7e6fcc
7 changed files with 113 additions and 0 deletions

15
server.go Normal file
View File

@@ -0,0 +1,15 @@
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"))
}