mirror of
https://github.com/Forceu/Gokapi.git
synced 2026-01-24 01:48:28 -06:00
12 lines
244 B
Go
12 lines
244 B
Go
package models
|
|
|
|
// DbConnection is a struct that contains the database configuration for connecting
|
|
type DbConnection struct {
|
|
HostUrl string
|
|
RedisPrefix string
|
|
Username string
|
|
Password string
|
|
RedisUseSsl bool
|
|
Type int
|
|
}
|