Browse Source

Moved from Github to code.osinet.fr

Frederic G. MARAND 6 years ago
parent
commit
def93ac2ae
9 changed files with 18 additions and 18 deletions
  1. 4 4
      doc/deps.svg
  2. 3 3
      kurz.go
  3. 2 2
      strategy/hexcrc32.go
  4. 2 2
      strategy/manual.go
  5. 1 1
      strategy/strategies.go
  6. 2 2
      strategy/strategy.go
  7. 2 2
      strategy/strategy_test.go
  8. 1 1
      url/longurl.go
  9. 1 1
      url/shorturl.go

+ 4 - 4
doc/deps.svg

@@ -12,12 +12,12 @@
 <!-- N0 -->
 <!-- N0 -->
 <g id="node1" class="node"><title>N0</title>
 <g id="node1" class="node"><title>N0</title>
 <polygon fill="none" stroke="black" points="228,-180 40,-180 40,-144 228,-144 228,-180"/>
 <polygon fill="none" stroke="black" points="228,-180 40,-180 40,-144 228,-144 228,-180"/>
-<text text-anchor="middle" x="134" y="-158.4" font-family="Times Roman,serif" font-size="14.00">github.com/FGM/kurz/url</text>
+<text text-anchor="middle" x="134" y="-158.4" font-family="Times Roman,serif" font-size="14.00">code.osinet.fr/fgm/kurz/url</text>
 </g>
 </g>
 <!-- N1 -->
 <!-- N1 -->
 <g id="node2" class="node"><title>N1</title>
 <g id="node2" class="node"><title>N1</title>
 <polygon fill="none" stroke="black" points="244,-108 24,-108 24,-72 244,-72 244,-108"/>
 <polygon fill="none" stroke="black" points="244,-108 24,-108 24,-72 244,-72 244,-108"/>
-<text text-anchor="middle" x="134" y="-86.4" font-family="Times Roman,serif" font-size="14.00">github.com/FGM/kurz/storage</text>
+<text text-anchor="middle" x="134" y="-86.4" font-family="Times Roman,serif" font-size="14.00">code.osinet.fr/fgm/kurz/storage</text>
 </g>
 </g>
 <!-- N0&#45;&gt;N1 -->
 <!-- N0&#45;&gt;N1 -->
 <g id="edge12" class="edge"><title>N0&#45;&gt;N1</title>
 <g id="edge12" class="edge"><title>N0&#45;&gt;N1</title>
@@ -37,7 +37,7 @@
 <!-- N2 -->
 <!-- N2 -->
 <g id="node3" class="node"><title>N2</title>
 <g id="node3" class="node"><title>N2</title>
 <polygon fill="none" stroke="black" points="164,-324 8.52651e-14,-324 0,-288 164,-288 164,-324"/>
 <polygon fill="none" stroke="black" points="164,-324 8.52651e-14,-324 0,-288 164,-288 164,-324"/>
-<text text-anchor="middle" x="82" y="-302.4" font-family="Times Roman,serif" font-size="14.00">github.com/FGM/kurz</text>
+<text text-anchor="middle" x="82" y="-302.4" font-family="Times Roman,serif" font-size="14.00">code.osinet.fr/fgm/kurz</text>
 </g>
 </g>
 <!-- N2&#45;&gt;N1 -->
 <!-- N2&#45;&gt;N1 -->
 <g id="edge2" class="edge"><title>N2&#45;&gt;N1</title>
 <g id="edge2" class="edge"><title>N2&#45;&gt;N1</title>
@@ -47,7 +47,7 @@
 <!-- N3 -->
 <!-- N3 -->
 <g id="node4" class="node"><title>N3</title>
 <g id="node4" class="node"><title>N3</title>
 <polygon fill="none" stroke="black" points="266,-252 40,-252 40,-216 266,-216 266,-252"/>
 <polygon fill="none" stroke="black" points="266,-252 40,-252 40,-216 266,-216 266,-252"/>
-<text text-anchor="middle" x="153" y="-230.4" font-family="Times Roman,serif" font-size="14.00">github.com/FGM/kurz/strategy</text>
+<text text-anchor="middle" x="153" y="-230.4" font-family="Times Roman,serif" font-size="14.00">code.osinet.fr/fgm/kurz/strategy</text>
 </g>
 </g>
 <!-- N2&#45;&gt;N3 -->
 <!-- N2&#45;&gt;N3 -->
 <g id="edge4" class="edge"><title>N2&#45;&gt;N3</title>
 <g id="edge4" class="edge"><title>N2&#45;&gt;N3</title>

+ 3 - 3
kurz.go

@@ -21,9 +21,9 @@ package main
 
 
 import (
 import (
 	//	"fmt"
 	//	"fmt"
-	"github.com/FGM/kurz/command"
-	//	"github.com/FGM/kurz/storage"
-	//	"github.com/FGM/kurz/strategy"
+	"code.osinet.fr/fgm/kurz/command"
+	//	"code.osinet.fr/fgm/kurz/storage"
+	//	"code.osinet.fr/fgm/kurz/strategy"
 	//	"log"
 	//	"log"
 )
 )
 
 

+ 2 - 2
strategy/hexcrc32.go

@@ -2,8 +2,8 @@ package strategy
 
 
 import (
 import (
 	"errors"
 	"errors"
-	"github.com/FGM/kurz/storage"
-	"github.com/FGM/kurz/url"
+	"code.osinet.fr/fgm/kurz/storage"
+	"code.osinet.fr/fgm/kurz/url"
 )
 )
 
 
 /*
 /*

+ 2 - 2
strategy/manual.go

@@ -3,8 +3,8 @@ package strategy
 import (
 import (
 	"errors"
 	"errors"
 	"fmt"
 	"fmt"
-	"github.com/FGM/kurz/storage"
-	"github.com/FGM/kurz/url"
+	"code.osinet.fr/fgm/kurz/storage"
+	"code.osinet.fr/fgm/kurz/url"
 	"time"
 	"time"
 )
 )
 
 

+ 1 - 1
strategy/strategies.go

@@ -4,7 +4,7 @@ import (
 	"bytes"
 	"bytes"
 	"database/sql"
 	"database/sql"
 	"fmt"
 	"fmt"
-	"github.com/FGM/kurz/storage"
+	"code.osinet.fr/fgm/kurz/storage"
 	"log"
 	"log"
 )
 )
 
 

+ 2 - 2
strategy/strategy.go

@@ -10,8 +10,8 @@ Files
 package strategy
 package strategy
 
 
 import (
 import (
-	"github.com/FGM/kurz/storage"
-	"github.com/FGM/kurz/url"
+	"code.osinet.fr/fgm/kurz/storage"
+	"code.osinet.fr/fgm/kurz/url"
 	"log"
 	"log"
 	"time"
 	"time"
 )
 )

+ 2 - 2
strategy/strategy_test.go

@@ -1,8 +1,8 @@
 package strategy
 package strategy
 
 
 import (
 import (
-	"github.com/FGM/kurz/storage"
-	"github.com/FGM/kurz/url"
+	"code.osinet.fr/fgm/kurz/storage"
+	"code.osinet.fr/fgm/kurz/url"
 	"testing"
 	"testing"
 )
 )
 
 

+ 1 - 1
url/longurl.go

@@ -1,6 +1,6 @@
 package url
 package url
 
 
-import "github.com/FGM/kurz/storage"
+import "code.osinet.fr/fgm/kurz/storage"
 
 
 type LongUrl struct {
 type LongUrl struct {
 	Id    int64
 	Id    int64

+ 1 - 1
url/shorturl.go

@@ -1,7 +1,7 @@
 package url
 package url
 
 
 import (
 import (
-	"github.com/FGM/kurz/storage"
+	"code.osinet.fr/fgm/kurz/storage"
 )
 )
 
 
 type ShortUrl struct {
 type ShortUrl struct {