diff options
-rw-r--r-- | config.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/config.go b/config.go new file mode 100644 index 0000000..f97f2a3 --- /dev/null +++ b/config.go @@ -0,0 +1,24 @@ +package main + +import ( + _ "embed" + "encoding/json" + "log" +) + +//go:embed default_config.json +var defaultConfig string + +type CeresConfig struct { + HttpAddress string `json:"http_address"` + StorageFilePath string `json:"storage_file_path"` +} + +var config CeresConfig + +func init() { + err := json.Unmarshal([]byte(defaultConfig), &config) + if err != nil { + log.Fatal(err) + } +} |