2
0

gorm_mysql.go 230 B

123456789
  1. package config
  2. type Mysql struct {
  3. GeneralDB `yaml:",inline" mapstructure:",squash"`
  4. }
  5. func (m *Mysql) Dsn() string {
  6. return m.Username + ":" + m.Password + "@tcp(" + m.Path + ":" + m.Port + ")/" + m.Dbname + "?" + m.Config
  7. }