From 71bedaf9e8403c4b0974d707784fe2c7315bacb3 Mon Sep 17 00:00:00 2001 From: Seednode Date: Thu, 19 Jan 2023 12:40:33 -0600 Subject: [PATCH] Changed json keys to lower-case --- cmd/files.go | 4 ++-- cmd/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/files.go b/cmd/files.go index b52422d..e49318f 100644 --- a/cmd/files.go +++ b/cmd/files.go @@ -51,8 +51,8 @@ type ScanStats struct { } type TimesServed struct { - File string - Count uint64 + file string + count uint64 } type ServeStats struct { diff --git a/cmd/version.go b/cmd/version.go index 158a31a..b2980e3 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" ) -var Version = "0.31.0" +var Version = "0.31.1" func init() { rootCmd.AddCommand(versionCmd)