summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go2
-rw-r--r--model/storage.go4
2 files changed, 5 insertions, 1 deletions
diff --git a/main.go b/main.go
index d0b0be2..07e1c90 100644
--- a/main.go
+++ b/main.go
@@ -33,7 +33,7 @@ func main() {
config.Read()
}
- storage := model.Storage{Path: config.StorageFilePath}
+ storage := model.NewStorage(config.StorageFilePath)
if !storage.Exists() {
storage.Create()
}
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)