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.
|
package controller
|
|
|
|
import (
|
|
"github.com/taoshihan1991/imaptool/tmpl"
|
|
"net/http"
|
|
)
|
|
|
|
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)
|
|
}
|