30 lines
437 B
Go
30 lines
437 B
Go
package common
|
|
|
|
import (
|
|
"ai-css/tools"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
)
|
|
|
|
type Mysql struct {
|
|
Server string
|
|
Port string
|
|
Database string
|
|
Username string
|
|
Password string
|
|
}
|
|
|
|
func GetMysqlConf() *Mysql {
|
|
var mysql = &Mysql{}
|
|
isExist, _ := tools.IsFileExist(MysqlConf)
|
|
if !isExist {
|
|
return mysql
|
|
}
|
|
info, err := ioutil.ReadFile(MysqlConf)
|
|
if err != nil {
|
|
return mysql
|
|
}
|
|
err = json.Unmarshal(info, mysql)
|
|
return mysql
|
|
}
|