forked from nixcn/nixcn-cms
22 lines
279 B
Go
22 lines
279 B
Go
package drivers
|
|
|
|
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 MeiliDSN struct {
|
|
Host string
|
|
ApiKey string
|
|
}
|