Chrono|Docs

Installation

Add Chrono to a Go module

Install Chrono with go get:

Terminal
go get go.codnect.io/chrono

Then import the package from your Go code:

main.go
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.

go.mod
require go.codnect.io/chrono v1.0.0

Next step

After installation, continue with Quick start to create a scheduler and run your first task.