[audio] Run go fmt because we have to

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram 2016-05-24 21:05:27 -07:00
parent 31881bca81
commit 50ea4143f9
3 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ func main() {
laser := audio.NewAudioDriver(e, "laser", "./examples/laser.mp3") laser := audio.NewAudioDriver(e, "laser", "./examples/laser.mp3")
work := func() { work := func() {
gobot.Every(2 * time.Second, func() { gobot.Every(2*time.Second, func() {
laser.Play() laser.Play()
}) })
} }

View File

@ -2,12 +2,12 @@ package gobottest
import ( import (
"fmt" "fmt"
"os"
"os/exec"
"reflect" "reflect"
"runtime" "runtime"
"strings" "strings"
"testing" "testing"
"os"
"os/exec"
) )
var errFunc = func(t *testing.T, message string) { var errFunc = func(t *testing.T, message string) {

View File

@ -3,8 +3,8 @@
package audio package audio
import ( import (
"testing"
"os/exec" "os/exec"
"testing"
"github.com/hybridgroup/gobot/gobottest" "github.com/hybridgroup/gobot/gobottest"
) )