10 lines
84 B
Go
10 lines
84 B
Go
package mysql
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type GormAdapter struct {
|
|
DB *gorm.DB
|
|
}
|