This commit is contained in:
aozhiwei 2024-06-28 14:46:30 +08:00
parent 883eff90e5
commit a0122ba8e5

View File

@ -17,7 +17,8 @@ type Mysql struct {
maxIdleConns int32
}
func (this *Mysql) init(host string, port int32, user string, passwd string, database string, maxOpenConns int32, maxIdleConns int32) {
func (this *Mysql) init(host string, port int32, user string, passwd string, database string,
maxOpenConns int32, maxIdleConns int32) {
this.host = host
this.port = port
this.user = user