Installation
Add Chrono to a Go module
Install Chrono with go get:
go get go.codnect.io/chronoThen import the package from your Go code:
import "go.codnect.io/chrono"Requirements
Chrono is intended for Go applications that need scheduled background work. Use
it from a Go module and keep the package version pinned through go.mod.
require go.codnect.io/chrono v1.0.0Next step
After installation, continue with Quick start to create a scheduler and run your first task.
