forked from nixcn/nixcn-cms
25 lines
287 B
Go
25 lines
287 B
Go
package drivers
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type ExternalDSN struct {
|
|
Host string
|
|
Name string
|
|
Username string
|
|
Password string
|
|
}
|
|
|
|
type RedisDSN struct {
|
|
Hosts []string
|
|
Master string
|
|
Username string
|
|
Password string
|
|
DB int
|
|
}
|
|
|
|
type DBClient struct {
|
|
*gorm.DB
|
|
}
|