diff options
| -rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ import ( "embed" "encoding/json" "flag" + "fmt" "github.com/BurntSushi/toml" "github.com/anhgelus/golatt" "log/slog" @@ -191,5 +192,5 @@ func generateConfigFile(isToml bool) { if err != nil { panic(err) } - println(string(b)) + fmt.Println(string(b)) } |
