Files
go-bot-dongl/config/douyin.go
2023-07-17 18:11:18 +08:00

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"`
}