Skip to content

Commit

Permalink
Changed imports to work with current source code...
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvalik committed Jan 15, 2019
1 parent 4647870 commit d26768c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion commands/admin/restart.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io"
"time"

"github.com/FactoKit/FactoCord/support"
"../../support"
"github.com/bwmarrin/discordgo"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/admin/save.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package admin
import (
"io"

"github.com/FactoKit/FactoCord/support"
"../../support"
"github.com/bwmarrin/discordgo"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/admin/stop.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package admin
import (
"io"

"github.com/FactoKit/FactoCord/support"
"../../support"
"github.com/bwmarrin/discordgo"
)

Expand Down
6 changes: 3 additions & 3 deletions commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package commands
import (
"strings"

"github.com/FactoKit/FactoCord/commands/admin"
"github.com/FactoKit/FactoCord/commands/utils"
"github.com/FactoKit/FactoCord/support"
"./admin"
"./utils"
"../support"
"github.com/bwmarrin/discordgo"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/utils/mods.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"io/ioutil"

"github.com/FactoKit/FactoCord/support"
"../../support"
"github.com/bwmarrin/discordgo"
)

Expand Down

1 comment on commit d26768c

@robertvalik
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fixed issue #8 for me - after go build everything seems to work...

Please sign in to comment.