File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -56,3 +56,10 @@ type ProjectConfig struct {
56
56
Attributes []AttributeEntity `json:"attributes"`
57
57
Audiences []AudienceEntity `json:"audiences"`
58
58
}
59
+
60
+ // OptimizelyClient is the client to interface with the Optimizely server
61
+ // side APIs.
62
+ type OptimizelyClient struct {
63
+ account_id string
64
+ project_config ProjectConfig
65
+ }
Original file line number Diff line number Diff line change @@ -5,13 +5,6 @@ import (
5
5
"net/url"
6
6
)
7
7
8
- // OptimizelyClient is the client to interface with the Optimizely server
9
- // side APIs.
10
- type OptimizelyClient struct {
11
- account_id string
12
- project_config ProjectConfig
13
- }
14
-
15
8
// GetOptimizelyClient returns a client that can be used to interface
16
9
// with Optimizely
17
10
func GetOptimizelyClient (account_id string ) (* OptimizelyClient , error ) {
You can’t perform that action at this time.
0 commit comments