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 package pgx_test
import ( import (
"github.com/JackC/pgx" "github.com/jackc/pgx"
"io/ioutil" "io/ioutil"
"math/rand" "math/rand"
"testing" "testing"

View File

@ -1,7 +1,7 @@
package pgx_test package pgx_test
import ( 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"} 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 ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/JackC/pgx" "github.com/jackc/pgx"
"sync" "sync"
"testing" "testing"
) )

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
# Examples # Examples
* url_shortener contains a simple example of using pgx in a web context. * 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. * (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. * (The Pithy Reader)[https://github.com/jackc/tpr] is a RSS aggregator that uses pgx.

View File

@ -1,7 +1,7 @@
package main package main
import ( import (
"github.com/JackC/pgx" "github.com/jackc/pgx"
log "gopkg.in/inconshreveable/log15.v2" log "gopkg.in/inconshreveable/log15.v2"
"io/ioutil" "io/ioutil"
"net/http" "net/http"

View File

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

View File

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

View File

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

View File

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