Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ldmberman committed Oct 17, 2014
1 parent 9418049 commit 60f937d
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LED/leds.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package LED

import (
"fmt"
"github.com/mattrajca/GoEV3/utilities"
"github.com/ldmberman/GoEV3/utilities"
"log"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion Motor/motors.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package Motor

import (
"github.com/mattrajca/GoEV3/utilities"
"github.com/ldmberman/GoEV3/utilities"
"log"
"os"
"path"
Expand Down
2 changes: 1 addition & 1 deletion Sensors/color.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Sensors

import (
"fmt"
"github.com/mattrajca/GoEV3/utilities"
"github.com/ldmberman/GoEV3/utilities"
)

// Color sensor type.
Expand Down
2 changes: 1 addition & 1 deletion Sensors/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Sensors

import (
"fmt"
"github.com/mattrajca/GoEV3/utilities"
"github.com/ldmberman/GoEV3/utilities"
"io/ioutil"
"log"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion Sensors/infrared.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Sensors

import (
"fmt"
"github.com/mattrajca/GoEV3/utilities"
"github.com/ldmberman/GoEV3/utilities"
"time"
)

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

import (
"fmt"
"github.com/mattrajca/GoEV3/utilities"
"github.com/ldmberman/GoEV3/utilities"
"time"
)

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

import (
"fmt"
"github.com/mattrajca/GoEV3/utilities"
"github.com/ldmberman/GoEV3/utilities"
)

// Ultrasonic sensor type.
Expand Down
2 changes: 1 addition & 1 deletion Sound/sound.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package Sound

import (
"github.com/mattrajca/GoEV3/utilities"
"github.com/ldmberman/GoEV3/utilities"
"os/exec"
"time"
)
Expand Down
12 changes: 6 additions & 6 deletions sample.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ package main

import (
"fmt"
"github.com/mattrajca/GoEV3/Button"
"github.com/mattrajca/GoEV3/LED"
"github.com/mattrajca/GoEV3/Motor"
"github.com/mattrajca/GoEV3/Sensors"
"github.com/mattrajca/GoEV3/Sound"
"github.com/mattrajca/GoEV3/TTS"
"github.com/ldmberman/GoEV3/Button"
"github.com/ldmberman/GoEV3/LED"
"github.com/ldmberman/GoEV3/Motor"
"github.com/ldmberman/GoEV3/Sensors"
"github.com/ldmberman/GoEV3/Sound"
"github.com/ldmberman/GoEV3/TTS"
"time"
)

Expand Down

0 comments on commit 60f937d

Please sign in to comment.