diff options
Diffstat (limited to 'lib/dirstore.go')
-rw-r--r-- | lib/dirstore.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/dirstore.go b/lib/dirstore.go index e7ebb77..862e97a 100644 --- a/lib/dirstore.go +++ b/lib/dirstore.go @@ -5,9 +5,7 @@ type DirStore struct { } func NewDirStore() *DirStore { - return &DirStore{ - dirs: make([]string, 0), - } + return &DirStore{} } func (store *DirStore) Update(dirs []string) { |