添加抖音解析功能

This commit is contained in:
NothAmor
2023-07-17 18:11:18 +08:00
parent 8aaf8c3da6
commit 16d8f81ee2
9 changed files with 545 additions and 16 deletions

12
config/douyin.go Normal file
View File

@@ -0,0 +1,12 @@
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"`
}