Categorygithub.com/lastchiliarch/cronparser
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)

# Functions

No description provided by the author
No description provided by the author

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Variables

No description provided by the author
No description provided by the author

# Structs

No description provided by the author
Parse parses the input and returs the result.