fix mixed

This commit is contained in:
saji 2023-05-04 20:49:04 -05:00
parent 7c8d790865
commit 1f379e7e6a
3 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ package db
import ( import (
"github.com/jmoiron/sqlx" "github.com/jmoiron/sqlx"
"github.com/kschamplin/gotelem/internal/can" "github.com/kschamplin/gotelem/can"
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
) )

View file

@ -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 package socketcan
@ -9,7 +9,7 @@ import (
"fmt" "fmt"
"net" "net"
"github.com/kschamplin/gotelem/internal/can" "github.com/kschamplin/gotelem/can"
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
) )

View file

@ -5,7 +5,7 @@ import (
"net" "net"
"testing" "testing"
"github.com/kschamplin/gotelem/internal/can" "github.com/kschamplin/gotelem/can"
) )
func TestCanSocket(t *testing.T) { func TestCanSocket(t *testing.T) {