13 lines
310 B
Go
13 lines
310 B
Go
package config
|
|
|
|
type DouYin struct {
|
|
Protocol string `yaml:"protocol"`
|
|
Address string `yaml:"address"`
|
|
Port string `yaml:"port"`
|
|
Router struct {
|
|
Api string `yaml:"api"`
|
|
Download string `yaml:"download"`
|
|
DouyinVideoData string `yaml:"douyin_video_data"`
|
|
} `yaml:"router"`
|
|
}
|