This commit is contained in:
Ken-Håvard Lieng 2015-12-11 04:35:48 +01:00
parent a45833e281
commit eeb45e17c2
576 changed files with 1289 additions and 1289 deletions

View file

@ -1,9 +1,9 @@
package commands
import (
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/spf13/cobra"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/spf13/cobra"
"github.com/khlieng/name_pending/storage"
"github.com/khlieng/dispatch/storage"
)
var clearCmd = &cobra.Command{

View file

@ -6,7 +6,7 @@ import (
"os/exec"
"path"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/spf13/cobra"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/spf13/cobra"
)
var (

View file

@ -6,18 +6,18 @@ import (
"os"
"path"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/mitchellh/go-homedir"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/spf13/cobra"
"github.com/khlieng/name_pending/Godeps/_workspace/src/github.com/spf13/viper"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/mitchellh/go-homedir"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/spf13/cobra"
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/spf13/viper"
"github.com/khlieng/name_pending/assets"
"github.com/khlieng/name_pending/server"
"github.com/khlieng/name_pending/storage"
"github.com/khlieng/dispatch/assets"
"github.com/khlieng/dispatch/server"
"github.com/khlieng/dispatch/storage"
)
var (
rootCmd = &cobra.Command{
Use: "name_pending",
Use: "dispatch",
Short: "Web-based IRC client in Go.",
Run: func(cmd *cobra.Command, args []string) {
storage.Initialize(appDir)
@ -79,5 +79,5 @@ func defaultDir() string {
log.Fatal(err)
}
return path.Join(dir, ".name_pending")
return path.Join(dir, ".dispatch")
}