File tree Expand file tree Collapse file tree 7 files changed +9
-12
lines changed Expand file tree Collapse file tree 7 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ issues:
79
79
# bugs of typecheck linter
80
80
- " undeclared name: `shellquote`"
81
81
- ' github.com/kballard/go-shellquote" imported but not used'
82
- - ' github.com/haproxytech/config-parser /v5/types" imported but not used'
82
+ - ' github.com/haproxytech/client-native /v5/config-parser /types" imported but not used'
83
83
exclude-rules :
84
84
- linters :
85
85
- staticcheck
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ import (
10
10
clientnative "github.com/haproxytech/client-native/v5"
11
11
"github.com/haproxytech/client-native/v5/models"
12
12
13
+ parser "github.com/haproxytech/client-native/v5/config-parser"
14
+ "github.com/haproxytech/client-native/v5/config-parser/types"
13
15
"github.com/haproxytech/client-native/v5/configuration"
14
16
configuration_options "github.com/haproxytech/client-native/v5/configuration/options"
15
17
runtime_api "github.com/haproxytech/client-native/v5/runtime"
16
18
runtime_options "github.com/haproxytech/client-native/v5/runtime/options"
17
- parser "github.com/haproxytech/config-parser/v5"
18
- "github.com/haproxytech/config-parser/v5/types"
19
19
20
20
dataplaneapi_config "github.com/haproxytech/dataplaneapi/configuration"
21
21
"github.com/haproxytech/dataplaneapi/log"
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ import (
36
36
37
37
"github.com/google/renameio"
38
38
client_native "github.com/haproxytech/client-native/v5"
39
- "github.com/haproxytech/config-parser /v5/types"
39
+ "github.com/haproxytech/client-native /v5/config-parser /types"
40
40
jsoniter "github.com/json-iterator/go"
41
41
42
42
"github.com/haproxytech/dataplaneapi/log"
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ import (
25
25
26
26
"github.com/GehirnInc/crypt"
27
27
api_errors "github.com/go-openapi/errors"
28
- parser "github.com/haproxytech/config-parser /v5"
29
- "github.com/haproxytech/config-parser /v5/common"
30
- "github.com/haproxytech/config-parser /v5/options"
31
- "github.com/haproxytech/config-parser /v5/types"
28
+ parser "github.com/haproxytech/client-native /v5/config-parser "
29
+ "github.com/haproxytech/client-native /v5/config-parser /common"
30
+ "github.com/haproxytech/client-native /v5/config-parser /options"
31
+ "github.com/haproxytech/client-native /v5/config-parser /types"
32
32
33
33
"github.com/haproxytech/dataplaneapi/misc"
34
34
)
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ require (
25
25
github.com/google/renameio v1.0.1
26
26
github.com/google/uuid v1.6.0
27
27
github.com/haproxytech/client-native/v5 v5.1.14
28
- github.com/haproxytech/config-parser/v5 v5.1.6
29
28
github.com/jessevdk/go-flags v1.6.1
30
29
github.com/json-iterator/go v1.1.12
31
30
github.com/kr/pretty v0.3.1
Original file line number Diff line number Diff line change @@ -87,8 +87,6 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
87
87
github.com/google/uuid v1.6.0 /go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo =
88
88
github.com/haproxytech/client-native/v5 v5.1.14 h1:Q7G32YJQlHugIUb1fFTm+jsBUbS0EGCjW4UyAKtTKBU =
89
89
github.com/haproxytech/client-native/v5 v5.1.14 /go.mod h1:dhwpFkOsWxJRtwNs+LTJtsUTf9pX3uWHKKip9loIK3c =
90
- github.com/haproxytech/config-parser/v5 v5.1.6 h1:64KHffpOGoyjFuMmq9dLOvcRCEzg/2GAnPwhmue1uVY =
91
- github.com/haproxytech/config-parser/v5 v5.1.6 /go.mod h1:16+1AbS+AvMZkDScIhergz2dqecQuEmjwV4Xt5ncS9s =
92
90
github.com/haproxytech/go-logger v1.1.0 h1:HgGtYaI1ApkvbQdsm7f9AzQQoxTB7w37criTflh7IQE =
93
91
github.com/haproxytech/go-logger v1.1.0 /go.mod h1:OekUd8HCb7ubxMplzHUPBTHNxZmddOWfOjWclZsqIeM =
94
92
github.com/invopop/yaml v0.3.1 h1:f0+ZpmhfBSS4MhG+4HYseMdJhoeeopbSKbq5Rpeelso =
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ import (
28
28
"strings"
29
29
30
30
"github.com/GehirnInc/crypt"
31
+ "github.com/haproxytech/client-native/v5/config-parser/types"
31
32
"github.com/haproxytech/client-native/v5/configuration"
32
33
client_errors "github.com/haproxytech/client-native/v5/errors"
33
34
"github.com/haproxytech/client-native/v5/models"
34
- "github.com/haproxytech/config-parser/v5/types"
35
35
jsoniter "github.com/json-iterator/go"
36
36
37
37
"github.com/haproxytech/dataplaneapi/haproxy"
You can’t perform that action at this time.
0 commit comments