使用 gin使用 gin 框架,编写 api 接口时,需要定义返回格式
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
2022-12-03