This commit is contained in:
2025-06-04 15:47:59 +08:00
parent 5bd7fdfe44
commit a9633ebd60
6 changed files with 170 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"fmt"
"github.com/gin-gonic/gin"
)
func main() {
r := gin.Default()
fmt.Println("http://" + "127.0.0.1:8080")
r.Run("127.0.0.1:8080")
}