From c8830ec7b361c93c8e4912b0e312e5dac444858d Mon Sep 17 00:00:00 2001 From: rmanach Date: Wed, 8 Jan 2025 14:19:58 +0100 Subject: [PATCH] bump version number --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index 39b635f..187b5f7 100644 --- a/main.go +++ b/main.go @@ -20,6 +20,7 @@ import ( const ( defaultPort = 8585 defaulStoreDir = "./store" + version = "0.1.0" ) var ( @@ -45,6 +46,8 @@ var ( ) func main() { + log.Info().Str("version", version).Msg("") + ctx, fnCancel := signal.NotifyContext(context.Background(), os.Kill, os.Interrupt) defer fnCancel()