forked from ebhomengo/niki
14 lines
190 B
Go
14 lines
190 B
Go
|
package mysqlpiggybank
|
||
|
|
||
|
import "git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||
|
|
||
|
type DB struct {
|
||
|
conn *mysql.MySQLDB
|
||
|
}
|
||
|
|
||
|
func New(conn *mysql.MySQLDB) *DB {
|
||
|
return &DB{
|
||
|
conn: conn,
|
||
|
}
|
||
|
}
|