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.
24 lines
309 B
24 lines
309 B
package relation
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type MetaDB struct {
|
|
DB *gorm.DB
|
|
table any
|
|
}
|
|
|
|
func NewMetaDB(db *gorm.DB, table any) *MetaDB {
|
|
return &MetaDB{
|
|
DB: db,
|
|
table: table,
|
|
}
|
|
}
|
|
|
|
func (g *MetaDB) db(ctx context.Context) *gorm.DB {
|
|
return g.DB.WithContext(ctx).Model(g.table)
|
|
}
|