Moved all import paths to the bitbucket location

This commit is contained in:
Chris Sexton 2012-08-17 18:17:39 -04:00
parent f31362fca4
commit ce798b120a
4 changed files with 6 additions and 6 deletions

View File

@ -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 {

View File

@ -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"

View File

@ -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 {

View File

@ -1,7 +1,7 @@
package plugins package plugins
import ( import (
"godeepintir/bot" "bitbucket.org/phlyingpenguin/godeepintir/bot"
"strings" "strings"
) )