fix mixed
This commit is contained in:
parent
7c8d790865
commit
1f379e7e6a
|
@ -2,7 +2,7 @@ package db
|
|||
|
||||
import (
|
||||
"github.com/jmoiron/sqlx"
|
||||
"github.com/kschamplin/gotelem/internal/can"
|
||||
"github.com/kschamplin/gotelem/can"
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
socketcan provides a wrapper around the Linux socketCAN interface.
|
||||
Package socketcan provides a wrapper around the Linux socketCAN interface.
|
||||
*/
|
||||
package socketcan
|
||||
|
||||
|
@ -9,7 +9,7 @@ import (
|
|||
"fmt"
|
||||
"net"
|
||||
|
||||
"github.com/kschamplin/gotelem/internal/can"
|
||||
"github.com/kschamplin/gotelem/can"
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"net"
|
||||
"testing"
|
||||
|
||||
"github.com/kschamplin/gotelem/internal/can"
|
||||
"github.com/kschamplin/gotelem/can"
|
||||
)
|
||||
|
||||
func TestCanSocket(t *testing.T) {
|
||||
|
|
Loading…
Reference in a new issue