diff options
author | xengineering <me@xengineering.eu> | 2024-05-06 17:16:54 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-06 21:16:22 +0200 |
commit | 250fc80c3c15cd38a518af5c256e2ba619295f5f (patch) | |
tree | 5e3fd5792b26b86970eac4f0cfcf080d263a92e1 /model | |
parent | 5c248884afa530bafb7b04dc14c587e3029480f6 (diff) | |
download | ceres-250fc80c3c15cd38a518af5c256e2ba619295f5f.tar ceres-250fc80c3c15cd38a518af5c256e2ba619295f5f.tar.zst ceres-250fc80c3c15cd38a518af5c256e2ba619295f5f.zip |
model: Introduce NewStorage() function
It is a common pattern inside the Go standard library to provide a
constructor with this naming scheme to custom types of the package.
Doing this here results in a style closer to the standard library which
improves readability.
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) |