Skip to content

Commit fef3986

Browse files
committed
refactor(settings)!: rename config file to settings.json
BREAKING CHANGE: Configuration is now loaded from `settings.json` instead of `config.json`.
1 parent 7aa132a commit fef3986

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
config.json
1+
settings.json
22
*.exe
33
*.syso

internal/settings/settings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77
)
88

9-
const filePath = "config.json"
9+
const filePath = "settings.json"
1010

1111
type Settings struct {
1212
MaxTemp int `json:"maxTemp"`

0 commit comments

Comments
 (0)