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 /main.go | |
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 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ func main() { config.Read() } - storage := model.Storage{Path: config.StorageFilePath} + storage := model.NewStorage(config.StorageFilePath) if !storage.Exists() { storage.Create() } |