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.
28 lines
439 B
28 lines
439 B
package result |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/job/main/archive/conf" |
|
"go-common/library/database/sql" |
|
) |
|
|
|
// Dao is redis dao. |
|
type Dao struct { |
|
c *conf.Config |
|
db *sql.DB |
|
} |
|
|
|
// New is new redis dao. |
|
func New(c *conf.Config) (d *Dao) { |
|
d = &Dao{ |
|
c: c, |
|
db: sql.NewMySQL(c.DB.Result), |
|
} |
|
return d |
|
} |
|
|
|
// BeginTran begin transcation. |
|
func (d *Dao) BeginTran(c context.Context) (tx *sql.Tx, err error) { |
|
return d.db.Begin(c) |
|
}
|
|
|