-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyWordParams.go
executable file
·115 lines (98 loc) · 1.25 KB
/
keyWordParams.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package go_referrer_type
type ReferrerSearchYahoo struct {
Param string
}
type ReferrerSearchGoogle struct {
Param string
}
type ReferrerSocial struct {
Param string
}
type ReferrerSocialLink struct {
Param string
}
type ReferrerOganic struct {
Param string
}
type ReferrerCp struct {
Param string
}
type ReferrerDisplay struct {
Param string
}
type ReferrerCpCampaign struct {
Param string
}
type ReferrerAd struct {
Param string
}
var ReferrerSearchYahoos = []ReferrerSearchYahoo{
{
Param:"yahoo",
},
{
Param:"yahoo",
},
}
var ReferrerSearchGoogles = []ReferrerSearchGoogle{
{
Param:"google",
},
{
Param:"Google",
},
}
var ReferrerSocialLinks = []ReferrerSocialLink{
{
Param:"twitter",
},
{
Param:"Twitter",
},
{
Param:"t.co",
},
{
Param:"facebook",
},
{
Param:"instagramk",
},
{
Param:"Instagram",
},
}
var ReferrerOganics = []ReferrerOganic{
{
Param:"organic",
},
{
Param:"Organic",
},
}
var ReferrerCps = []ReferrerCp{
{
Param:"cpc",
},
{
Param:"ppc",
},
}
var ReferrerDisplays = []ReferrerDisplay{
{
Param:"display",
},
}
var ReferrerCpCampaigns = []ReferrerCpCampaign{
{
Param:"remarketing",
},
}
var ReferrerAds = []ReferrerAd{
{
Param:"affiliate",
},
{
Param:"email",
},
}