2023-12-20 08:47:03 +00:00
|
|
|
package mysqlkindbox
|
2023-12-16 07:20:01 +00:00
|
|
|
|
|
|
|
import "git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
|
|
|
|
|
|
|
type DB struct {
|
|
|
|
conn *mysql.MySQLDB
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(conn *mysql.MySQLDB) *DB {
|
|
|
|
return &DB{
|
|
|
|
conn: conn,
|
|
|
|
}
|
2023-12-20 15:39:25 +00:00
|
|
|
}
|