mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-11-29 00:23:18 +00:00
10 lines
235 B
Go
10 lines
235 B
Go
package config
|
|
|
|
type Cache struct {
|
|
Type string
|
|
RedisAddr string `mapstructure:"redis-addr"`
|
|
RedisPwd string `mapstructure:"redis-pwd"`
|
|
RedisDb int `mapstructure:"redis-db"`
|
|
FileDir string `mapstructure:"file-dir"`
|
|
}
|