Puuuussshhh
Some checks failed
Create Release & Upload Assets / Upload Assets To Gitea w/ goreleaser (push) Successful in 2m3s
Create Release & Upload Assets / Build Container Image (push) Failing after 1m6s

This commit is contained in:
William Gill
2025-10-11 03:41:01 +00:00
commit caab555275
744 changed files with 548783 additions and 0 deletions

14
chronical.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"github.com/rs/zerolog"
"chronical/cmd"
)
func main() {
zerolog.TimeFieldFormat = zerolog.TimeFormatUnix
zerolog.SetGlobalLevel(zerolog.InfoLevel)
cmd.Execute()
}