diff options
| author | Anhgelus Morhtuuzh <anhgelus@anhgelus.world> | 2025-03-03 11:26:25 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <anhgelus@anhgelus.world> | 2025-03-03 11:26:25 +0100 |
| commit | bfe18181af17bad8983051a8983c4742c4c81d7e (patch) | |
| tree | d2522dd1a2db11c254b1045255ea7dc403b88c78 | |
| parent | aa5a93e978cf986bf39c3d0055e22efe0a1b50b0 (diff) | |
fix(cli): not printing to std out
| -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)) } |
