diff options
Diffstat (limited to 'model')
-rw-r--r-- | model/storage.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/model/storage.go b/model/storage.go index c0d155d..231cbb6 100644 --- a/model/storage.go +++ b/model/storage.go @@ -10,6 +10,10 @@ type Storage struct { Path string } +func NewStorage(path string) Storage { + return Storage{Path: path} +} + func (s Storage) Exists() bool { _, err := os.Stat(s.Path) return !os.IsNotExist(err) |