一大坨垃圾正在前进

This commit is contained in:
des
2025-12-29 23:05:32 +08:00
parent 960d7e6fcc
commit 580697fc82
40 changed files with 12860 additions and 20 deletions

20
srv/server.go Normal file
View File

@@ -0,0 +1,20 @@
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"))
}
/**
无名之辈
*/