-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathasinmain.go
31 lines (27 loc) · 1.18 KB
/
asinmain.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
30
31
/*
版权所有,侵权必究
署名-非商业性使用-禁止演绎 4.0 国际
警告: 以下的代码版权归属hunterhug,请不要传播或修改代码
你可以在教育用途下使用该代码,但是禁止公司或个人用于商业用途(在未授权情况下不得用于盈利)
商业授权请联系邮箱:[email protected] QQ:569929309
All right reserved
Attribution-NonCommercial-NoDerivatives 4.0 International
Notice: The following code's copyright by hunterhug, Please do not spread and modify.
You can use it for education only but can't make profits for any companies and individuals!
For more information on commercial licensing please contact hunterhug.
Ask for commercial licensing please contact Mail:[email protected] Or QQ:569929309
2017.7 by hunterhug
*/
package main
import (
"github.com/hunterhug/AmazonBigSpider"
"github.com/hunterhug/AmazonBigSpider/public/core"
)
func main() {
if AmazonBigSpider.Local {
core.InitConfig(AmazonBigSpider.Dir+"/config/uk_local_config.json", AmazonBigSpider.Dir+"/config/uk_log.json")
} else {
core.InitConfig(AmazonBigSpider.Dir+"/config/uk_config.json", AmazonBigSpider.Dir+"/config/uk_log.json")
}
core.AsinGo()
}