Просмотр исходного кода

changed the import path to something that will not change in the future

Christoph Hack 12 лет назад
Родитель
Сommit
076bc7fde0
3 измененных файлов с 6 добавлено и 6 удалено
  1. 3 3
      README.md
  2. 2 2
      gocql_test/main.go
  3. 1 1
      uuid/uuid.go

+ 3 - 3
README.md

@@ -12,7 +12,7 @@ maintained.
 Installation
 Installation
 ------------
 ------------
 
 
-    go get github.com/tux21b/gocql
+    go get tux21b.org/v1/gocql
 
 
 
 
 Features
 Features
@@ -44,8 +44,8 @@ import (
 	"fmt"
 	"fmt"
 	"log"
 	"log"
 
 
-	"github.com/tux21b/gocql"
-	"github.com/tux21b/gocql/uuid"
+	"tux21b.org/v1/gocql"
+	"tux21b.org/v1/gocql/uuid"
 )
 )
 
 
 func main() {
 func main() {

+ 2 - 2
gocql_test/main.go

@@ -10,8 +10,8 @@ import (
 	"sort"
 	"sort"
 	"time"
 	"time"
 
 
-	"github.com/tux21b/gocql"
-	"github.com/tux21b/gocql/uuid"
+	"tux21b.org/v1/gocql"
+	"tux21b.org/v1/gocql/uuid"
 )
 )
 
 
 var session *gocql.Session
 var session *gocql.Session

+ 1 - 1
uuid/uuid.go

@@ -15,7 +15,7 @@ import (
 	"net"
 	"net"
 	"time"
 	"time"
 
 
-	"github.com/tux21b/gocql"
+	"tux21b.org/v1/gocql"
 )
 )
 
 
 type UUID [16]byte
 type UUID [16]byte