高金

时间:2024-03-07 15:16:51
【文件属性】:

文件名称:高金

文件大小:41KB

文件格式:ZIP

更新时间:2024-03-07 15:16:51

Go

杜松子酒介绍 package main import "github.com/gin-gonic/gin" func main () { r := gin . Default () r . GET ( "/ping" , func ( c * gin. Context ) { c . JSON ( 200 , gin. H { "message" : "pong" , }) }) r . Run () // 监听并在 0.0.0.0:8080 上启动服务 } 这是官方的入门介绍,对于编程新手来说不太友好,可以改成下面这个样子: package main import "github.com/gin-gonic/gin" func PingGet ( c * gin. Context ) { c . JSON ( 200 , gin. H { "message" :


【文件预览】:
GoGin-main
----.gitignore(59B)
----go.mod(490B)
----middleware()
--------cookie()
--------practice()
--------session()
--------README.md(2KB)
--------middleware.go(4KB)
----templates()
--------query.html(2KB)
--------stock-out.html(1KB)
--------login.html(513B)
--------stock-in.html(1KB)
--------index.html(417B)
--------order.html(322B)
--------inventory.html(763B)
--------404.html(114B)
----practice()
--------handler()
--------middleware()
--------main.go(588B)
--------database()
--------router()
----hello_world()
--------hello_world.go(2KB)
----go.sum(14KB)
----README.md(2KB)
----.gitattributes(66B)
----features()
--------bind()
--------log()
----test()
--------main.go(472B)

网友评论