Update github.com/JackC to github.com/jackc

scan-io
Jack Christensen 2014-06-21 08:36:20 -05:00
parent d9522a4741
commit b2c1a14fcc
12 changed files with 13 additions and 13 deletions

View File

@ -1,7 +1,7 @@
package pgx_test
import (
"github.com/JackC/pgx"
"github.com/jackc/pgx"
"io/ioutil"
"math/rand"
"testing"

View File

@ -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"}

View File

@ -3,7 +3,7 @@ package pgx_test
import (
"errors"
"fmt"
"github.com/JackC/pgx"
"github.com/jackc/pgx"
"sync"
"testing"
)

View File

@ -3,7 +3,7 @@ package pgx_test
import (
"bytes"
"fmt"
"github.com/JackC/pgx"
"github.com/jackc/pgx"
"strings"
"sync"
"testing"

View File

@ -1,7 +1,7 @@
package pgx_test
import (
"github.com/JackC/pgx"
"github.com/jackc/pgx"
"testing"
)

View File

@ -3,7 +3,7 @@ package pgx_test
import (
"encoding/binary"
"fmt"
"github.com/JackC/pgx"
"github.com/jackc/pgx"
"io"
"regexp"
"strconv"

View File

@ -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.

View File

@ -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"

View File

@ -1,7 +1,7 @@
package pgx_test
import (
"github.com/JackC/pgx"
"github.com/jackc/pgx"
"io"
"testing"
)

View File

@ -1,7 +1,7 @@
package pgx_test
import (
"github.com/JackC/pgx"
"github.com/jackc/pgx"
"strconv"
"testing"
)

View File

@ -4,7 +4,7 @@ import (
"database/sql"
"database/sql/driver"
"fmt"
"github.com/JackC/pgx"
"github.com/jackc/pgx"
"io"
)

View File

@ -2,7 +2,7 @@ package stdlib_test
import (
"database/sql"
_ "github.com/JackC/pgx/stdlib"
_ "github.com/jackc/pgx/stdlib"
"testing"
)