更新 main.go
Docker Deploy / build-and-deploy (push) Successful in 2m18s Details

This commit is contained in:
root 2024-07-07 20:58:49 +08:00
parent 5290326d30
commit 8970145d5b
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import (
func main() {
router := gin.Default()
router.GET("/", func(c *gin.Context) {
Q := c.Query("Q")
Q := c.Query("q")
c.JSON(200, gin.H{
"message": "Hello "+Q,
})