diff options
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -4,12 +4,14 @@ import ( _ "embed" "encoding/json" "log" + "os" ) //go:embed default_config.json var defaultConfig string type CeresConfig struct { + Path string HttpAddress string `json:"http_address"` StorageFilePath string `json:"storage_file_path"` } @@ -22,3 +24,15 @@ func init() { log.Fatal(err) } } + +func (c *CeresConfig) Read() { + data, err := os.ReadFile(c.Path) + if err != nil { + log.Fatal(err) + } + + err = json.Unmarshal(data, &c) + if err != nil { + log.Fatal(err) + } +} |