Fork me on GitHub
摘要: 在gin中通过如下代码可以正常的启动一个服务: package main import ( "github.com/gin-gonic/gin" "net/http" ) func main() { router := gin.Default() router.GET("/index", func( 阅读全文
posted @ 2022-02-17 06:26 iveBoy 阅读(1692) 评论(0) 推荐(0) 编辑
TOP