Skip to content

Commit

Permalink
Merge branch 'master' into fix-uuid-error
Browse files Browse the repository at this point in the history
  • Loading branch information
hokorobi authored Jan 20, 2019
2 parents 48a4593 + 5c6c1d8 commit 2b92966
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/gofrs/uuid v3.2.0+incompatible
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mitchellh/go-homedir v1.0.0
github.com/mitchellh/go-homedir v1.0.0 // indirect
github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/viper v1.2.1
Expand Down
5 changes: 3 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ import (
"path/filepath"

"github.com/fatih/color"
"github.com/mitchellh/go-homedir"
"github.com/sachaos/todoist/lib"
"github.com/spf13/viper"
"github.com/urfave/cli"
)

var (
configPath = os.Getenv("HOME")
default_cache_path = os.Getenv("HOME") + "/.todoist.cache.json"
configPath, _ = homedir.Dir()
default_cache_path = filepath.Join(configPath, ".todoist.cache.json")
CommandFailed = errors.New("command failed")
IdNotFound = errors.New("specified id not found")
writer Writer
Expand Down

0 comments on commit 2b92966

Please sign in to comment.