mirror of https://github.com/jackc/pgx.git
Update github.com/JackC to github.com/jackc
parent
d9522a4741
commit
b2c1a14fcc
|
@ -1,7 +1,7 @@
|
|||
package pgx_test
|
||||
|
||||
import (
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
"io/ioutil"
|
||||
"math/rand"
|
||||
"testing"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package pgx_test
|
||||
|
||||
import (
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
)
|
||||
|
||||
var defaultConnConfig *pgx.ConnConfig = &pgx.ConnConfig{Host: "127.0.0.1", User: "pgx_md5", Password: "secret", Database: "pgx_test"}
|
||||
|
|
|
@ -3,7 +3,7 @@ package pgx_test
|
|||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
"sync"
|
||||
"testing"
|
||||
)
|
||||
|
|
|
@ -3,7 +3,7 @@ package pgx_test
|
|||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
"strings"
|
||||
"sync"
|
||||
"testing"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package pgx_test
|
||||
|
||||
import (
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package pgx_test
|
|||
import (
|
||||
"encoding/binary"
|
||||
"fmt"
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
"io"
|
||||
"regexp"
|
||||
"strconv"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Examples
|
||||
|
||||
* url_shortener contains a simple example of using pgx in a web context.
|
||||
* (Tern)[https://github.com/JackC/tern] is a migration tool that uses pgx.
|
||||
* (The Pithy Reader)[https://github.com/JackC/tpr] is a RSS aggregator that uses pgx.
|
||||
* (Tern)[https://github.com/jackc/tern] is a migration tool that uses pgx.
|
||||
* (The Pithy Reader)[https://github.com/jackc/tpr] is a RSS aggregator that uses pgx.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
log "gopkg.in/inconshreveable/log15.v2"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package pgx_test
|
||||
|
||||
import (
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
"io"
|
||||
"testing"
|
||||
)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package pgx_test
|
||||
|
||||
import (
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
"strconv"
|
||||
"testing"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"database/sql"
|
||||
"database/sql/driver"
|
||||
"fmt"
|
||||
"github.com/JackC/pgx"
|
||||
"github.com/jackc/pgx"
|
||||
"io"
|
||||
)
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ package stdlib_test
|
|||
|
||||
import (
|
||||
"database/sql"
|
||||
_ "github.com/JackC/pgx/stdlib"
|
||||
_ "github.com/jackc/pgx/stdlib"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue