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 arduino/grpc/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

rpc "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1"
"github.com/arduino/arduino-cli/rpc/cc/arduino/cli/settings/v1"
"github.com/bcmi-labs/iot-cloud-cli/arduino"
"github.com/arduino/iot-cloud-cli/arduino"
"google.golang.org/grpc"
)

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

"github.com/arduino/arduino-cli/cli/feedback"
paths "github.com/arduino/go-paths-helper"
"github.com/bcmi-labs/iot-cloud-cli/command/config"
"github.com/arduino/iot-cloud-cli/command/config"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cli/device/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package device
import (
"fmt"

"github.com/bcmi-labs/iot-cloud-cli/command/device"
"github.com/arduino/iot-cloud-cli/command/device"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/ping/ping.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ping

import (
"github.com/bcmi-labs/iot-cloud-cli/command/ping"
"github.com/arduino/iot-cloud-cli/command/ping"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"os"

"github.com/bcmi-labs/iot-cloud-cli/cli/config"
"github.com/bcmi-labs/iot-cloud-cli/cli/device"
"github.com/bcmi-labs/iot-cloud-cli/cli/ping"
"github.com/arduino/iot-cloud-cli/cli/config"
"github.com/arduino/iot-cloud-cli/cli/device"
"github.com/arduino/iot-cloud-cli/cli/ping"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions command/device/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"strings"

rpc "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1"
"github.com/bcmi-labs/iot-cloud-cli/arduino/grpc"
"github.com/bcmi-labs/iot-cloud-cli/internal/config"
"github.com/bcmi-labs/iot-cloud-cli/internal/iot"
"github.com/arduino/iot-cloud-cli/arduino/grpc"
"github.com/arduino/iot-cloud-cli/internal/config"
"github.com/arduino/iot-cloud-cli/internal/iot"
)

// CreateParams contains the paramters needed
Expand Down
6 changes: 3 additions & 3 deletions command/device/provision.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"strings"
"time"

"github.com/bcmi-labs/iot-cloud-cli/arduino"
"github.com/bcmi-labs/iot-cloud-cli/internal/iot"
"github.com/bcmi-labs/iot-cloud-cli/internal/serial"
"github.com/arduino/iot-cloud-cli/arduino"
"github.com/arduino/iot-cloud-cli/internal/iot"
"github.com/arduino/iot-cloud-cli/internal/serial"
)

type provision struct {
Expand Down
4 changes: 2 additions & 2 deletions command/ping/ping.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"syscall"
"time"

"github.com/bcmi-labs/iot-cloud-cli/internal/mqtt"
"github.com/bcmi-labs/iot-cloud-cli/internal/properties"
"github.com/arduino/iot-cloud-cli/internal/mqtt"
"github.com/arduino/iot-cloud-cli/internal/properties"
paho "github.com/eclipse/paho.mqtt.golang"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/bcmi-labs/iot-cloud-cli
module github.com/arduino/iot-cloud-cli

go 1.15

Expand Down
2 changes: 1 addition & 1 deletion internal/serial/serial_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

"github.com/bcmi-labs/iot-cloud-cli/internal/serial/mocks"
"github.com/arduino/iot-cloud-cli/internal/serial/mocks"
"github.com/stretchr/testify/mock"
)

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/bcmi-labs/iot-cloud-cli/cli"
import "github.com/arduino/iot-cloud-cli/cli"

func main() {
cli.Execute()
Expand Down