代码拉取完成,页面将自动刷新
同步操作将从 danny/BaiZe 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package main
import (
"baize/app/common/commonModels"
"baize/app/common/mysql"
"baize/app/common/redis"
"baize/app/routes"
"baize/app/setting"
"baize/app/utils"
"baize/app/utils/logger"
"fmt"
"github.com/gin-gonic/gin"
"net/http"
"os"
)
// @title 白泽
// @version 1.0.x
// @description 白泽接口文档
// @termsOfService https://www.ibaize.vip
// @contact.name danny
// @contact.url https://www.ibaize.vip
// @contact.email zhao_402295440@126.com
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @host localhost:8080
func main() {
var filePath string
if len(os.Args) <= 1 {
filePath = "./config.yaml"
} else {
filePath = os.Args[1]
}
//1.加载配置
setting.Init(filePath)
//2.初始化日志
logger.Init()
//3.初始化MySQL
mysql.Init()
defer mysql.Close() // 程序退出关闭数据库连接
//4.初始化Redis
redis.Init()
defer redis.Close()
//5.初始化Utils
utils.Init()
//6.注册路由启动服务
r := routes.Init()
err := r.Run(fmt.Sprintf(":%d", setting.Conf.Port))
if err != nil {
panic(err)
}
}
// @Summary 添加用户
// @accept multipart/form-data
// @Produce json
// @Param email formData string true "用户邮箱地址"
// @Param username formData string true "用户名"
// @Param password formData string true "用户密码"
// @Success 200 {string} json "{"code":200,"data":[],"msg":{"title":"ok"}}"
// @Router /api/v1/users [post]
func DemoUserList(c *gin.Context) {
c.JSON(http.StatusOK, commonModels.Success())
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。