package provider
import "gorm.io/gorm"
type Database interface {
DB() *gorm.DB
DatabaseReady() bool
}