mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-12-02 10:03:16 +00:00
20 lines
431 B
Go
20 lines
431 B
Go
package config
|
|
|
|
const (
|
|
TypeSqlite = "sqlite"
|
|
TypeMysql = "mysql"
|
|
)
|
|
|
|
type Gorm struct {
|
|
Type string `mapstructure:"type"`
|
|
MaxIdleConns int `mapstructure:"max-idle-conns"`
|
|
MaxOpenConns int `mapstructure:"max-open-conns"`
|
|
}
|
|
|
|
type Mysql struct {
|
|
Addr string `mapstructure:"addr"`
|
|
Username string `mapstructure:"username"`
|
|
Password string `mapstructure:"password"`
|
|
Dbname string `mapstructure:"dbname"`
|
|
}
|