3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-12-23 03:02:48 +01:00

Rename deps

This commit is contained in:
Daniel Oaks 2017-06-15 10:14:19 -06:00
parent 8b0435be5b
commit c9ed749538
21 changed files with 30 additions and 32 deletions

View File

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

View File

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

View File

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

View File

@ -13,7 +13,7 @@ import (
"sync" "sync"
"github.com/DanielOaks/girc-go/ircmsg" "github.com/goshuirc/irc-go/ircmsg"
"github.com/tidwall/buntdb" "github.com/tidwall/buntdb"
) )

View File

@ -8,8 +8,8 @@ import (
"strings" "strings"
"time" "time"
"github.com/DanielOaks/girc-go/ircfmt" "github.com/goshuirc/irc-go/ircfmt"
"github.com/DanielOaks/girc-go/ircmsg" "github.com/goshuirc/irc-go/ircmsg"
"github.com/oragono/oragono/irc/sno" "github.com/oragono/oragono/irc/sno"
"github.com/tidwall/buntdb" "github.com/tidwall/buntdb"
) )

View File

@ -16,8 +16,8 @@ import (
"sync" "sync"
"time" "time"
"github.com/DanielOaks/girc-go/ircfmt" "github.com/goshuirc/irc-go/ircfmt"
"github.com/DanielOaks/girc-go/ircmsg" "github.com/goshuirc/irc-go/ircmsg"
ident "github.com/oragono/go-ident" ident "github.com/oragono/go-ident"
"github.com/oragono/oragono/irc/sno" "github.com/oragono/oragono/irc/sno"
) )

View File

@ -11,9 +11,9 @@ import (
"regexp" "regexp"
"strings" "strings"
"sync" "github.com/goshuirc/irc-go/ircmatch"
"github.com/DanielOaks/girc-go/ircmatch" "sync"
) )
var ( var (

View File

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

View File

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

View File

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

View File

@ -14,8 +14,8 @@ import (
"encoding/json" "encoding/json"
"github.com/DanielOaks/girc-go/ircfmt" "github.com/goshuirc/irc-go/ircfmt"
"github.com/DanielOaks/girc-go/ircmsg" "github.com/goshuirc/irc-go/ircmsg"
"github.com/oragono/oragono/irc/custime" "github.com/oragono/oragono/irc/custime"
"github.com/oragono/oragono/irc/sno" "github.com/oragono/oragono/irc/sno"
"github.com/tidwall/buntdb" "github.com/tidwall/buntdb"

View File

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

View File

@ -10,9 +10,9 @@ import (
"strings" "strings"
"time" "time"
"github.com/DanielOaks/girc-go/ircfmt" "github.com/goshuirc/irc-go/ircfmt"
"github.com/DanielOaks/girc-go/ircmatch" "github.com/goshuirc/irc-go/ircmatch"
"github.com/DanielOaks/girc-go/ircmsg" "github.com/goshuirc/irc-go/ircmsg"
"github.com/oragono/oragono/irc/custime" "github.com/oragono/oragono/irc/custime"
"github.com/oragono/oragono/irc/sno" "github.com/oragono/oragono/irc/sno"
"github.com/tidwall/buntdb" "github.com/tidwall/buntdb"

View File

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

View File

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

View File

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

View File

@ -8,7 +8,7 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/DanielOaks/girc-go/ircmsg" "github.com/goshuirc/irc-go/ircmsg"
) )
var ( var (

View File

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

View File

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

View File

@ -23,8 +23,8 @@ import (
"syscall" "syscall"
"time" "time"
"github.com/DanielOaks/girc-go/ircfmt" "github.com/goshuirc/irc-go/ircfmt"
"github.com/DanielOaks/girc-go/ircmsg" "github.com/goshuirc/irc-go/ircmsg"
"github.com/oragono/oragono/irc/logger" "github.com/oragono/oragono/irc/logger"
"github.com/oragono/oragono/irc/sno" "github.com/oragono/oragono/irc/sno"
"github.com/tidwall/buntdb" "github.com/tidwall/buntdb"

View File

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