code-examples/2024/10/golang_matrix_demo1/main.go

21 lines
346 B
Go

package main
import (
"github.com/gin-gonic/gin"
"time"
)
func main() {
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
"datetime": time.Now(),
})
})
err := r.Run("localhost:8080")
if err != nil {
panic("Couldn't run the server. It failed with the error: " + err.Error())
}
}