forked from nixcn/nixcn-cms
17 lines
177 B
Go
17 lines
177 B
Go
package drivers
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type ExternalDSN struct {
|
|
Host string
|
|
Name string
|
|
Username string
|
|
Password string
|
|
}
|
|
|
|
type DBClient struct {
|
|
*gorm.DB
|
|
}
|