Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type Spec struct {
Timeout int64 `json:"timeout_secs,omitempty"`
}

func (s Spec) Validate() error {
func (Spec) Validate() error {
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ go 1.19

require (
github.com/cloudquery/plugin-sdk v1.35.0
github.com/gorilla/mux v1.8.0
github.com/rs/zerolog v1.29.0
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.13
)
Expand All @@ -13,7 +14,6 @@ require (
github.com/ghodss/yaml v1.0.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware/providers/zerolog/v2 v2.0.0-rc.3 // indirect
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.3 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
"github.com/scaleway/cq-source-scaleway/plugin"
"github.com/cloudquery/plugin-sdk/serve"
"github.com/scaleway/cq-source-scaleway/plugin"
)

func main() {
Expand Down