make imported package name explicit

This commit is contained in:
Frank Braun 2020-08-20 03:22:35 +00:00
parent eb39fcd95b
commit 7ceff4fe49
6 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ import (
"log"
"os"
"github.com/mutecomm/go-sqlcipher/v4"
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
)
func main() {

View File

@ -7,7 +7,7 @@ import (
"os"
"strings"
"github.com/mutecomm/go-sqlcipher/v4"
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
)
func createBulkInsertQuery(n int, start int) (query string, args []interface{}) {

View File

@ -5,7 +5,7 @@ import (
"fmt"
"log"
"github.com/mutecomm/go-sqlcipher/v4"
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
)
func main() {

View File

@ -5,7 +5,7 @@ import (
"fmt"
"log"
"github.com/mutecomm/go-sqlcipher/v4"
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
)
func main() {

View File

@ -5,7 +5,7 @@ import (
"fmt"
"log"
"github.com/mutecomm/go-sqlcipher/v4"
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
)
func main() {

View File

@ -6,7 +6,7 @@ import (
"io/ioutil"
"net/http"
"github.com/mutecomm/go-sqlcipher/v4"
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
)
type githubRepo struct {