mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-12-02 10:03:16 +00:00
10 lines
273 B
Go
10 lines
273 B
Go
package config
|
|
|
|
type Rustdesk struct {
|
|
IdServer string `mapstructure:"id-server"`
|
|
RelayServer string `mapstructure:"relay-server"`
|
|
ApiServer string `mapstructure:"api-server"`
|
|
Key string `mapstructure:"key"`
|
|
Personal int `mapstructure:"personal"`
|
|
}
|