[audio] Run go fmt because we have to
Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
parent
31881bca81
commit
50ea4143f9
|
@ -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()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
|
@ -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"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue