bump version number

This commit is contained in:
rmanach 2025-01-08 14:19:58 +01:00
parent c0e3bc69d4
commit c8830ec7b3

View File

@ -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()