Skip to content

Commit b647471

Browse files
authored
fix: Linting issues (#3)
Co-authored-by: Kemal Hadimli <[email protected]>
1 parent 4464d1e commit b647471

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/spec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type Spec struct {
1010
Timeout int64 `json:"timeout_secs,omitempty"`
1111
}
1212

13-
func (s Spec) Validate() error {
13+
func (Spec) Validate() error {
1414
return nil
1515
}
1616

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ go 1.19
44

55
require (
66
github.com/cloudquery/plugin-sdk v1.35.0
7+
github.com/gorilla/mux v1.8.0
78
github.com/rs/zerolog v1.29.0
89
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.13
910
)
@@ -13,7 +14,6 @@ require (
1314
github.com/ghodss/yaml v1.0.0 // indirect
1415
github.com/golang/protobuf v1.5.2 // indirect
1516
github.com/google/uuid v1.3.0 // indirect
16-
github.com/gorilla/mux v1.8.0 // indirect
1717
github.com/grpc-ecosystem/go-grpc-middleware/providers/zerolog/v2 v2.0.0-rc.3 // indirect
1818
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.3 // indirect
1919
github.com/inconshreveable/mousetrap v1.1.0 // indirect

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
"github.com/scaleway/cq-source-scaleway/plugin"
54
"github.com/cloudquery/plugin-sdk/serve"
5+
"github.com/scaleway/cq-source-scaleway/plugin"
66
)
77

88
func main() {

0 commit comments

Comments
 (0)