Bladeren bron

Rename deps

tags/v0.8.1
Daniel Oaks 7 jaren geleden
bovenliggende
commit
c9ed749538
21 gewijzigde bestanden met toevoegingen van 30 en 32 verwijderingen
  1. 2
    2
      irc/accountreg.go
  2. 2
    2
      irc/accounts.go
  3. 1
    1
      irc/capability.go
  4. 1
    1
      irc/channel.go
  5. 2
    2
      irc/chanserv.go
  6. 2
    2
      irc/client.go
  7. 2
    2
      irc/client_lookup_set.go
  8. 1
    3
      irc/commands.go
  9. 1
    1
      irc/connection_throttling.go
  10. 1
    1
      irc/debug.go
  11. 2
    2
      irc/dline.go
  12. 1
    1
      irc/help.go
  13. 3
    3
      irc/kline.go
  14. 1
    1
      irc/message_tags.go
  15. 1
    1
      irc/modes.go
  16. 1
    1
      irc/monitor.go
  17. 1
    1
      irc/nickname.go
  18. 1
    1
      irc/nickserv.go
  19. 1
    1
      irc/roleplay.go
  20. 2
    2
      irc/server.go
  21. 1
    1
      irc/snomanager.go

+ 2
- 2
irc/accountreg.go Bestand weergeven

@@ -12,8 +12,8 @@ import (
12 12
 	"strings"
13 13
 	"time"
14 14
 
15
-	"github.com/DanielOaks/girc-go/ircfmt"
16
-	"github.com/DanielOaks/girc-go/ircmsg"
15
+	"github.com/goshuirc/irc-go/ircfmt"
16
+	"github.com/goshuirc/irc-go/ircmsg"
17 17
 	"github.com/oragono/oragono/irc/sno"
18 18
 	"github.com/tidwall/buntdb"
19 19
 )

+ 2
- 2
irc/accounts.go Bestand weergeven

@@ -13,8 +13,8 @@ import (
13 13
 	"strings"
14 14
 	"time"
15 15
 
16
-	"github.com/DanielOaks/girc-go/ircfmt"
17
-	"github.com/DanielOaks/girc-go/ircmsg"
16
+	"github.com/goshuirc/irc-go/ircfmt"
17
+	"github.com/goshuirc/irc-go/ircmsg"
18 18
 	"github.com/oragono/oragono/irc/sno"
19 19
 	"github.com/tidwall/buntdb"
20 20
 )

+ 1
- 1
irc/capability.go Bestand weergeven

@@ -7,7 +7,7 @@ package irc
7 7
 import (
8 8
 	"strings"
9 9
 
10
-	"github.com/DanielOaks/girc-go/ircmsg"
10
+	"github.com/goshuirc/irc-go/ircmsg"
11 11
 )
12 12
 
13 13
 // Capability represents an optional feature that a client may request from the server.

+ 1
- 1
irc/channel.go Bestand weergeven

@@ -13,7 +13,7 @@ import (
13 13
 
14 14
 	"sync"
15 15
 
16
-	"github.com/DanielOaks/girc-go/ircmsg"
16
+	"github.com/goshuirc/irc-go/ircmsg"
17 17
 	"github.com/tidwall/buntdb"
18 18
 )
19 19
 

+ 2
- 2
irc/chanserv.go Bestand weergeven

@@ -8,8 +8,8 @@ import (
8 8
 	"strings"
9 9
 	"time"
10 10
 
11
-	"github.com/DanielOaks/girc-go/ircfmt"
12
-	"github.com/DanielOaks/girc-go/ircmsg"
11
+	"github.com/goshuirc/irc-go/ircfmt"
12
+	"github.com/goshuirc/irc-go/ircmsg"
13 13
 	"github.com/oragono/oragono/irc/sno"
14 14
 	"github.com/tidwall/buntdb"
15 15
 )

+ 2
- 2
irc/client.go Bestand weergeven

@@ -16,8 +16,8 @@ import (
16 16
 	"sync"
17 17
 	"time"
18 18
 
19
-	"github.com/DanielOaks/girc-go/ircfmt"
20
-	"github.com/DanielOaks/girc-go/ircmsg"
19
+	"github.com/goshuirc/irc-go/ircfmt"
20
+	"github.com/goshuirc/irc-go/ircmsg"
21 21
 	ident "github.com/oragono/go-ident"
22 22
 	"github.com/oragono/oragono/irc/sno"
23 23
 )

+ 2
- 2
irc/client_lookup_set.go Bestand weergeven

@@ -11,9 +11,9 @@ import (
11 11
 	"regexp"
12 12
 	"strings"
13 13
 
14
-	"sync"
14
+	"github.com/goshuirc/irc-go/ircmatch"
15 15
 
16
-	"github.com/DanielOaks/girc-go/ircmatch"
16
+	"sync"
17 17
 )
18 18
 
19 19
 var (

+ 1
- 3
irc/commands.go Bestand weergeven

@@ -5,9 +5,7 @@
5 5
 
6 6
 package irc
7 7
 
8
-import (
9
-	"github.com/DanielOaks/girc-go/ircmsg"
10
-)
8
+import "github.com/goshuirc/irc-go/ircmsg"
11 9
 
12 10
 // Command represents a command accepted from a client.
13 11
 type Command struct {

+ 1
- 1
irc/connection_throttling.go Bestand weergeven

@@ -8,7 +8,7 @@ import (
8 8
 	"net"
9 9
 	"time"
10 10
 
11
-	"github.com/DanielOaks/girc-go/ircmsg"
11
+	"github.com/goshuirc/irc-go/ircmsg"
12 12
 )
13 13
 
14 14
 // ThrottleDetails holds the connection-throttling details for a subnet/IP.

+ 1
- 1
irc/debug.go Bestand weergeven

@@ -12,7 +12,7 @@ import (
12 12
 	"runtime/pprof"
13 13
 	"time"
14 14
 
15
-	"github.com/DanielOaks/girc-go/ircmsg"
15
+	"github.com/goshuirc/irc-go/ircmsg"
16 16
 )
17 17
 
18 18
 // DEBUG GCSTATS/NUMGOROUTINE/etc

+ 2
- 2
irc/dline.go Bestand weergeven

@@ -14,8 +14,8 @@ import (
14 14
 
15 15
 	"encoding/json"
16 16
 
17
-	"github.com/DanielOaks/girc-go/ircfmt"
18
-	"github.com/DanielOaks/girc-go/ircmsg"
17
+	"github.com/goshuirc/irc-go/ircfmt"
18
+	"github.com/goshuirc/irc-go/ircmsg"
19 19
 	"github.com/oragono/oragono/irc/custime"
20 20
 	"github.com/oragono/oragono/irc/sno"
21 21
 	"github.com/tidwall/buntdb"

+ 1
- 1
irc/help.go Bestand weergeven

@@ -8,7 +8,7 @@ import (
8 8
 	"sort"
9 9
 	"strings"
10 10
 
11
-	"github.com/DanielOaks/girc-go/ircmsg"
11
+	"github.com/goshuirc/irc-go/ircmsg"
12 12
 )
13 13
 
14 14
 // HelpEntryType represents the different sorts of help entries that can exist.

+ 3
- 3
irc/kline.go Bestand weergeven

@@ -10,9 +10,9 @@ import (
10 10
 	"strings"
11 11
 	"time"
12 12
 
13
-	"github.com/DanielOaks/girc-go/ircfmt"
14
-	"github.com/DanielOaks/girc-go/ircmatch"
15
-	"github.com/DanielOaks/girc-go/ircmsg"
13
+	"github.com/goshuirc/irc-go/ircfmt"
14
+	"github.com/goshuirc/irc-go/ircmatch"
15
+	"github.com/goshuirc/irc-go/ircmsg"
16 16
 	"github.com/oragono/oragono/irc/custime"
17 17
 	"github.com/oragono/oragono/irc/sno"
18 18
 	"github.com/tidwall/buntdb"

+ 1
- 1
irc/message_tags.go Bestand weergeven

@@ -3,7 +3,7 @@
3 3
 
4 4
 package irc
5 5
 
6
-import "github.com/DanielOaks/girc-go/ircmsg"
6
+import "github.com/goshuirc/irc-go/ircmsg"
7 7
 
8 8
 // GetClientOnlyTags takes a tag map and returns a map containing just the client-only tags from it.
9 9
 func GetClientOnlyTags(tags map[string]ircmsg.TagValue) *map[string]ircmsg.TagValue {

+ 1
- 1
irc/modes.go Bestand weergeven

@@ -9,7 +9,7 @@ import (
9 9
 	"strconv"
10 10
 	"strings"
11 11
 
12
-	"github.com/DanielOaks/girc-go/ircmsg"
12
+	"github.com/goshuirc/irc-go/ircmsg"
13 13
 	"github.com/oragono/oragono/irc/sno"
14 14
 	"github.com/tidwall/buntdb"
15 15
 )

+ 1
- 1
irc/monitor.go Bestand weergeven

@@ -7,7 +7,7 @@ import (
7 7
 	"strconv"
8 8
 	"strings"
9 9
 
10
-	"github.com/DanielOaks/girc-go/ircmsg"
10
+	"github.com/goshuirc/irc-go/ircmsg"
11 11
 )
12 12
 
13 13
 // alertMonitors alerts everyone monitoring us that we're online.

+ 1
- 1
irc/nickname.go Bestand weergeven

@@ -8,7 +8,7 @@ import (
8 8
 	"fmt"
9 9
 	"strings"
10 10
 
11
-	"github.com/DanielOaks/girc-go/ircmsg"
11
+	"github.com/goshuirc/irc-go/ircmsg"
12 12
 )
13 13
 
14 14
 var (

+ 1
- 1
irc/nickserv.go Bestand weergeven

@@ -6,7 +6,7 @@ package irc
6 6
 import (
7 7
 	"strings"
8 8
 
9
-	"github.com/DanielOaks/girc-go/ircmsg"
9
+	"github.com/goshuirc/irc-go/ircmsg"
10 10
 )
11 11
 
12 12
 // nsHandler handles the /NS and /NICKSERV commands

+ 1
- 1
irc/roleplay.go Bestand weergeven

@@ -6,7 +6,7 @@ package irc
6 6
 import (
7 7
 	"fmt"
8 8
 
9
-	"github.com/DanielOaks/girc-go/ircmsg"
9
+	"github.com/goshuirc/irc-go/ircmsg"
10 10
 )
11 11
 
12 12
 const (

+ 2
- 2
irc/server.go Bestand weergeven

@@ -23,8 +23,8 @@ import (
23 23
 	"syscall"
24 24
 	"time"
25 25
 
26
-	"github.com/DanielOaks/girc-go/ircfmt"
27
-	"github.com/DanielOaks/girc-go/ircmsg"
26
+	"github.com/goshuirc/irc-go/ircfmt"
27
+	"github.com/goshuirc/irc-go/ircmsg"
28 28
 	"github.com/oragono/oragono/irc/logger"
29 29
 	"github.com/oragono/oragono/irc/sno"
30 30
 	"github.com/tidwall/buntdb"

+ 1
- 1
irc/snomanager.go Bestand weergeven

@@ -4,7 +4,7 @@ import (
4 4
 	"fmt"
5 5
 	"sync"
6 6
 
7
-	"github.com/DanielOaks/girc-go/ircfmt"
7
+	"github.com/goshuirc/irc-go/ircfmt"
8 8
 	"github.com/oragono/oragono/irc/sno"
9 9
 )
10 10
 

Laden…
Annuleren
Opslaan