Skip to content

Commit

Permalink
Go imports
Browse files Browse the repository at this point in the history
  • Loading branch information
PumpkinSeed committed Mar 18, 2021
1 parent b5f2079 commit cec1fdc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion drivers/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ package drivers

import (
"database/sql"
"github.com/volatiletech/null"
"log"

"github.com/volatiletech/null"
)

type Type int16
Expand Down
3 changes: 2 additions & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ package main

import (
"fmt"
"testing"

"github.com/PumpkinSeed/sqlfuzz/drivers"
"github.com/PumpkinSeed/sqlfuzz/pkg/connector"
"github.com/PumpkinSeed/sqlfuzz/pkg/flags"
"github.com/PumpkinSeed/sqlfuzz/pkg/fuzzer"
"github.com/brianvoe/gofakeit/v5"
"testing"
)

func TestFuzz(t *testing.T) {
Expand Down
3 changes: 1 addition & 2 deletions pkg/action/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ import (
"strings"
"time"

_ "github.com/lib/pq"

"github.com/PumpkinSeed/sqlfuzz/drivers"
"github.com/brianvoe/gofakeit/v5"
_ "github.com/lib/pq"
"github.com/rs/xid"
)

Expand Down
5 changes: 3 additions & 2 deletions pkg/connector/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package connector

import (
"database/sql"
"github.com/PumpkinSeed/sqlfuzz/drivers"
_ "github.com/lib/pq"
"log"
"sync"

"github.com/PumpkinSeed/sqlfuzz/drivers"
_ "github.com/lib/pq"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion pkg/fuzzer/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package fuzzer

import (
"database/sql"
_ "github.com/lib/pq"
"log"
"sync"

"github.com/PumpkinSeed/sqlfuzz/drivers"
"github.com/PumpkinSeed/sqlfuzz/pkg/action"
"github.com/PumpkinSeed/sqlfuzz/pkg/flags"
_ "github.com/lib/pq"
)

// Run the commands in a worker pool
Expand Down

0 comments on commit cec1fdc

Please sign in to comment.