You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
424 B
21 lines
424 B
package controller
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/taoshihan1991/imaptool/tmpl"
|
|
"net/http"
|
|
)
|
|
func MysqlGetConf(c *gin.Context) {
|
|
|
|
c.JSON(200, gin.H{
|
|
"code": 200,
|
|
"msg": "验证成功",
|
|
})
|
|
}
|
|
func ActionMysqlSet(w http.ResponseWriter, r *http.Request) {
|
|
render := tmpl.NewSettingHtml(w)
|
|
render.SetLeft("setting_left")
|
|
render.SetBottom("setting_bottom")
|
|
render.Display("mysql_setting", render)
|
|
}
|