make imported package name explicit
This commit is contained in:
parent
eb39fcd95b
commit
7ceff4fe49
|
@ -5,7 +5,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/mutecomm/go-sqlcipher/v4"
|
||||
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -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{}) {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/mutecomm/go-sqlcipher/v4"
|
||||
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/mutecomm/go-sqlcipher/v4"
|
||||
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/mutecomm/go-sqlcipher/v4"
|
||||
sqlite3 "github.com/mutecomm/go-sqlcipher/v4"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue