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 "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
|
||||
type Bot struct {
|
||||
|
|
6
main.go
6
main.go
|
@ -3,9 +3,9 @@ package main
|
|||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"godeepintir/bot"
|
||||
"godeepintir/config"
|
||||
"godeepintir/plugins"
|
||||
"bitbucket.org/phlyingpenguin/godeepintir/bot"
|
||||
"bitbucket.org/phlyingpenguin/godeepintir/config"
|
||||
"bitbucket.org/phlyingpenguin/godeepintir/plugins"
|
||||
)
|
||||
import irc "github.com/fluffle/goirc/client"
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package plugins
|
||||
|
||||
import "fmt"
|
||||
import "godeepintir/bot"
|
||||
import "bitbucket.org/phlyingpenguin/godeepintir/bot"
|
||||
|
||||
// Plugin interface defines the methods needed to accept a plugin
|
||||
type Plugin interface {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package plugins
|
||||
|
||||
import (
|
||||
"godeepintir/bot"
|
||||
"bitbucket.org/phlyingpenguin/godeepintir/bot"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue