-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
29 lines (26 loc) · 926 Bytes
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*!*
* Copyright (c) 2022-2025 Hangzhou Guanwaii Technology Co,.Ltd.
*
* This source code is licensed under the MIT License,
* which is located in the LICENSE file in the source tree's root directory.
*
* File: config.go
* Author: mingcheng ([email protected])
* File Created: 2022-07-22 23:37:43
*
* Modified By: mingcheng ([email protected])
* Last Modified: 2025-02-28 10:47:46
*/
package simplyddns
type Auth struct {
User string `yaml:"username" mapstructure:"username"`
Password string `yaml:"password" mapstructure:"password"`
}
type Config struct {
LogFile string `yaml:"logfile" mapstructure:"logfile"`
Debug bool `yaml:"debug" mapstructure:"debug"`
LoadUI bool `yaml:"ui" mapstructure:"ui"`
BindAddr string `yaml:"addr" mapstructure:"addr"`
Auth Auth `yaml:"auth" mapstructure:"auth"`
Jobs []JobConfig `yaml:"ddns" mapstructure:"ddns"`
}