modulepackage
0.0.0-20230402062234-12af5ac09025
Repository: https://github.com/nagenalock/json-beego.git
Documentation: pkg.go.dev
# README
json-beego
A beego controller for JSON data. You can use it to create RESTful API.
Example
# run example
go run /example/main.go
# curl hello world
curl 127.0.0.1:3306/v1/hello
# output:
{
code: 0,
msg: "",
data: "hello world"
}