package
0.0.0-20211127175118-db3ee8db598d
Repository: https://github.com/saraginov/learn-go.git
Documentation: pkg.go.dev

# README

Timers

To execute Go code in the future or repeatedly at an interval, Go's built-in timer and ticket features are used

Timers represent a single event in the future. A timer is told how long to wait and it provides a channel that will be notified at that time.