1
0

Removed explicit type for showVersion var.

This commit is contained in:
Alexander Andreev 2023-08-06 03:44:06 +04:00
parent dc52b7b3be
commit 5bf80666d6
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -24,7 +24,7 @@ var (
mostListenedSongPath = flag.String("mls-file", "/mnt/data/appdata/mostlistenedsong", "path to a file that stores info about the most listened song") mostListenedSongPath = flag.String("mls-file", "/mnt/data/appdata/mostlistenedsong", "path to a file that stores info about the most listened song")
songListLen = flag.Int("lst-len", 10, "number of songs to show in last N songs table") songListLen = flag.Int("lst-len", 10, "number of songs to show in last N songs table")
showVersion *bool = flag.Bool("v", false, "show version") showVersion = flag.Bool("v", false, "show version")
) )
var version string var version string