modulepackage
0.0.1
Repository: https://github.com/lastchiliarch/cronparser.git
Documentation: pkg.go.dev
# README
Cronparser
Crontab parser for golang(using yacc), you can use it to validate linux crontab etc.
Usage
result, err := ParseCron("*/5 1-3 * JAN SAT", true) if err != nil { log.Println("parse error:", err) return } fmt.Println(result)
# Structs
No description provided by the author
Parse parses the input and returs the result.