Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update module github.com/qlik-oss/enigma-go to v2 #237

Merged
merged 2 commits into from
Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion appstructure/appstructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package appstructure
import (
"encoding/json"

"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/enummap"
)

Expand Down
2 changes: 1 addition & 1 deletion config/appstructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/InVisionApp/tabular"
"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/appstructure"
"github.com/qlik-oss/gopherciser/helpers"
Expand Down
2 changes: 1 addition & 1 deletion config/getappstructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/appstructure"
"github.com/qlik-oss/gopherciser/connection"
Expand Down
2 changes: 1 addition & 1 deletion creation/stubs.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package creation

import "github.com/qlik-oss/enigma-go"
import "github.com/qlik-oss/enigma-go/v2"

// StubMetaDef creates a MetaDef template to be used when creating objects
func StubMetaDef(title string, description string) map[string]interface{} {
Expand Down
2 changes: 1 addition & 1 deletion enigmahandlers/enigmaobject.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/hashicorp/go-multierror"
"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/helpers"
)

Expand Down
2 changes: 1 addition & 1 deletion enigmahandlers/fieldcache.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package enigmahandlers
import (
"sync"

"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion enigmahandlers/fieldcache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

var fieldDummy = &enigma.Field{}
Expand Down
2 changes: 1 addition & 1 deletion enigmahandlers/interfaces.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package enigmahandlers

import enigma "github.com/qlik-oss/enigma-go"
import enigma "github.com/qlik-oss/enigma-go/v2"

type (
// ITrafficLogger interface for traffic logger
Expand Down
2 changes: 1 addition & 1 deletion enigmahandlers/senseconnect.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

jsoniter "github.com/json-iterator/go"
"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/enigmainterceptors"
"github.com/qlik-oss/gopherciser/globals"
"github.com/qlik-oss/gopherciser/globals/constant"
Expand Down
2 changes: 1 addition & 1 deletion enigmahandlers/sensedialer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"time"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/logger"
"github.com/qlik-oss/gopherciser/wsdialer"
)
Expand Down
2 changes: 1 addition & 1 deletion enigmahandlers/varcache.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package enigmahandlers
import (
"sync"

"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion enigmahandlers/varcache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

var varDummy = &enigma.GenericVariable{}
Expand Down
2 changes: 1 addition & 1 deletion enigmainterceptors/metricscollector.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package enigmainterceptors
import (
"context"

"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ require (
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/qlik-oss/enigma-go v1.2.1-0.20201204094709-4fac0b546d20
github.com/qlik-oss/enigma-go/v2 v2.0.1
github.com/rs/zerolog v1.23.0
github.com/sergi/go-diff v1.1.0 // indirect
github.com/shiena/ansicolor v0.0.0-20200904210342-c7312218db18
Expand Down
9 changes: 6 additions & 3 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,8 @@ github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsT
github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=
github.com/prometheus/procfs v0.6.0 h1:mxy4L2jP6qMonqmq+aTtOx1ifVWUgG/TAmntgbh3xv4=
github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=
github.com/qlik-oss/enigma-go v1.2.1-0.20201204094709-4fac0b546d20 h1:pzeTg7MlIrvHCblp/ihrsn1ENMb6C9iRL9s3nvgIxAo=
github.com/qlik-oss/enigma-go v1.2.1-0.20201204094709-4fac0b546d20/go.mod h1:lRHGLlIctWI9jqviDJu9NJdTkTP9HRA4LzEAMkmLtDI=
github.com/qlik-oss/enigma-go/v2 v2.0.1 h1:H6dP27bF2iegPxmp5ksortmVGoN0QycAsTutB02KQaA=
github.com/qlik-oss/enigma-go/v2 v2.0.1/go.mod h1:jfjSdif5uzbX1ztdqf/L7aUBRdLt94tpM5pfgzqEreU=
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ=
Expand Down Expand Up @@ -450,8 +450,9 @@ golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v
golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc=
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 h1:4nGaVu0QrbjT/AK2PRLuQfQuh6DJve+pELhqTdAj3x0=
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
golang.org/x/net v0.0.0-20210525063256-abc453219eb5 h1:wjuX4b5yYQnEQHzd+CBcrcC6OVR2J1CN6mUy0oSxIPo=
golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
Expand Down Expand Up @@ -523,6 +524,7 @@ golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40 h1:JWgyZ1qgdTaF3N3oxC+MdTV7qvEEgHo3otj+HB5CM7Q=
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
Expand All @@ -534,6 +536,7 @@ golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
Expand Down
2 changes: 1 addition & 1 deletion scenario/actionhandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/hashicorp/go-multierror"
jsoniter "github.com/json-iterator/go"
"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/appstructure"
"github.com/qlik-oss/gopherciser/buildmetrics"
Expand Down
2 changes: 1 addition & 1 deletion scenario/askhubadvisor.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ type (
FileName string `json:"file" displayname:"File with one query per line" doc-key:"askhubadvisor.file" displayelement:"file"`
App string `json:"app" displayname:"App name (optional)" doc-key:"askhubadvisor.app"`
SaveImages bool `json:"saveimages" displayname:"Save images" doc-key:"askhubadvisor.saveimages"`
SaveImageFile synced.Template `json:"saveimagefile" displayname:"File name (without suffix)" doc-key:"askhubadvisor.saveimagefile" displayelement:"savefile"`
SaveImageFile synced.Template `json:"saveimagefile" displayname:"File name (without suffix)" doc-key:"askhubadvisor.saveimagefile" displayelement:"savefile"`
ThinkTimeSettings *ThinkTimeSettings `json:"thinktime,omitempty" displayname:"Think time settings" doc-key:"askhubadvisor.thinktime"`
FollowupTypes []followupType `json:"followuptypes,omitempty" displayname:"Followup query types" doc-key:"askhubadvisor.followuptypes"`
}
Expand Down
4 changes: 2 additions & 2 deletions scenario/bookmark.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package scenario

import (
"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/enigmahandlers"
"github.com/qlik-oss/gopherciser/senseobjects"
Expand All @@ -13,7 +13,7 @@ import (
type (
BookMarkSettings struct {
Title synced.Template `json:"title" displayname:"Bookmark title" doc-key:"bookmark.title"`
ID string `json:"id" displayname:"Bookmark ID" doc-key:"bookmark.id" appstructure:"active:bookmark"`
ID string `json:"id" displayname:"Bookmark ID" doc-key:"bookmark.id" appstructure:"active:bookmark"`
}
)

Expand Down
2 changes: 1 addition & 1 deletion scenario/clickactionbutton.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/qlik-oss/gopherciser/helpers"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/connection"
"github.com/qlik-oss/gopherciser/enigmahandlers"
Expand Down
2 changes: 1 addition & 1 deletion scenario/createbookmark.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"time"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/appstructure"
"github.com/qlik-oss/gopherciser/connection"
Expand Down
2 changes: 1 addition & 1 deletion scenario/generateodag.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/connection"
"github.com/qlik-oss/gopherciser/enigmahandlers"
Expand Down
2 changes: 1 addition & 1 deletion scenario/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/enigmahandlers"
"github.com/qlik-oss/gopherciser/senseobjects"
Expand Down
2 changes: 1 addition & 1 deletion scenario/listboxselect.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strconv"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/connection"
"github.com/qlik-oss/gopherciser/enummap"
Expand Down
2 changes: 1 addition & 1 deletion scenario/randomaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/connection"
"github.com/qlik-oss/gopherciser/enigmahandlers"
Expand Down
2 changes: 1 addition & 1 deletion scenario/reload.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/connection"
"github.com/qlik-oss/gopherciser/enummap"
Expand Down
2 changes: 1 addition & 1 deletion scenario/select.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
"github.com/qlik-oss/gopherciser/connection"
"github.com/qlik-oss/gopherciser/enigmahandlers"
Expand Down
2 changes: 1 addition & 1 deletion scenario/setscriptvar.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type (
SetScriptVarSettings struct {
Name string `json:"name" doc-key:"setscriptvar.name" displayname:"Name"`
Type session.SessionVariableTypeEnum `json:"type" doc-key:"setscriptvar.type" displayname:"Variable type"`
Value synced.Template `json:"value" doc-key:"setscriptvar.value" displayname:"Variable value"`
Value synced.Template `json:"value" doc-key:"setscriptvar.value" displayname:"Variable value"`
Separator string `json:"sep" doc-key:"setscriptvar.sep" displayname:"Array separator"`
}
)
Expand Down
2 changes: 1 addition & 1 deletion scenario/setsensevariable.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
type (
//SetSenseVariableSettings
SetSenseVariableSettings struct {
VariableName string `json:"name" displayname:"name of the variable" doc-key:"setsensevariable.name"`
VariableName string `json:"name" displayname:"name of the variable" doc-key:"setsensevariable.name"`
VariableValue synced.Template `json:"value" displayname:"value of the variable" doc-key:"setsensevariable.value"`
}
)
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

jsoniter "github.com/json-iterator/go"
"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/action"
)

Expand Down
2 changes: 1 addition & 1 deletion senseobjects/bookmarklist.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/currentselections.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/dynamicappviewlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/pkg/errors"
"sync"

"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/fieldlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/listbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/qlik-oss/gopherciser/senseobjdef"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/loadmodellist.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/odagtoolbarnavpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/qlik-oss/gopherciser/senseobjdef"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/sheet.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/sheetlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
"github.com/qlik-oss/gopherciser/helpers"
)

Expand Down
2 changes: 1 addition & 1 deletion senseobjects/storylist.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion senseobjects/variablelist.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync"

"github.com/pkg/errors"
"github.com/qlik-oss/enigma-go"
"github.com/qlik-oss/enigma-go/v2"
)

type (
Expand Down