From 250fc80c3c15cd38a518af5c256e2ba619295f5f Mon Sep 17 00:00:00 2001 From: xengineering Date: Mon, 6 May 2024 17:16:54 +0200 Subject: 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. --- model/storage.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'model') 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) -- cgit v1.2.3-70-g09d2