From 642fed1cbf5160c89a93deab810bd44fb49d2a4a Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 12 May 2024 00:12:55 +0200 Subject: Move config path from config to flags struct This is metadata about the config and thus does not belong to the config itself. Moving it to the struct holding flag values is straight forward since it is defined by flags. --- config.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'config.go') diff --git a/config.go b/config.go index 0527294..eabc8b0 100644 --- a/config.go +++ b/config.go @@ -11,7 +11,6 @@ import ( var defaultConfig string type CeresConfig struct { - Path string HttpAddress string `json:"http_address"` StorageFilePath string `json:"storage_file_path"` } @@ -25,8 +24,8 @@ func init() { } } -func (c *CeresConfig) Read() { - data, err := os.ReadFile(c.Path) +func (c *CeresConfig) Read(path string) { + data, err := os.ReadFile(path) if err != nil { log.Fatal(err) } -- cgit v1.2.3-70-g09d2