mirror of https://github.com/velour/catbase.git
Moved all import paths to the bitbucket location
This commit is contained in:
parent
f31362fca4
commit
ce798b120a
|
@ -2,7 +2,7 @@ package bot
|
||||||
|
|
||||||
import irc "github.com/fluffle/goirc/client"
|
import irc "github.com/fluffle/goirc/client"
|
||||||
import "labix.org/v2/mgo"
|
import "labix.org/v2/mgo"
|
||||||
import "godeepintir/config"
|
import "bitbucket.org/phlyingpenguin/godeepintir/config"
|
||||||
|
|
||||||
// Bot type provides storage for bot-wide information, configs, and database connections
|
// Bot type provides storage for bot-wide information, configs, and database connections
|
||||||
type Bot struct {
|
type Bot struct {
|
||||||
|
|
6
main.go
6
main.go
|
@ -3,9 +3,9 @@ package main
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"godeepintir/bot"
|
"bitbucket.org/phlyingpenguin/godeepintir/bot"
|
||||||
"godeepintir/config"
|
"bitbucket.org/phlyingpenguin/godeepintir/config"
|
||||||
"godeepintir/plugins"
|
"bitbucket.org/phlyingpenguin/godeepintir/plugins"
|
||||||
)
|
)
|
||||||
import irc "github.com/fluffle/goirc/client"
|
import irc "github.com/fluffle/goirc/client"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package plugins
|
package plugins
|
||||||
|
|
||||||
import "fmt"
|
import "fmt"
|
||||||
import "godeepintir/bot"
|
import "bitbucket.org/phlyingpenguin/godeepintir/bot"
|
||||||
|
|
||||||
// Plugin interface defines the methods needed to accept a plugin
|
// Plugin interface defines the methods needed to accept a plugin
|
||||||
type Plugin interface {
|
type Plugin interface {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package plugins
|
package plugins
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"godeepintir/bot"
|
"bitbucket.org/phlyingpenguin/godeepintir/bot"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue