README ¶ croneye Check the job execution schedule from cron settings. Usage $ croneye [-from <FromTime>] [-to <ToTime>] Installation $ go get github.com/mizoR/croneye/... LICENSE MIT Expand ▾ Collapse ▴ Documentation ¶ Index ¶ type App func NewApp(fromTime time.Time, toTime time.Time) *App func (a App) Run(file *os.File) type Job func NewJob(runsAt time.Time, script string) *Job type JobList func (l JobList) Len() int func (l JobList) Less(i, j int) bool func (l JobList) Swap(i, j int) type Parser func NewParser(fromTime time.Time, toTime time.Time) *Parser func (p Parser) Parse(r io.Reader) JobList func (p Parser) ParseLine(line string) JobList Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type App ¶ type App struct { Parser Parser } func NewApp ¶ func NewApp(fromTime time.Time, toTime time.Time) *App func (App) Run ¶ func (a App) Run(file *os.File) type Job ¶ type Job struct { RunTime time.Time Script string } func NewJob ¶ func NewJob(runsAt time.Time, script string) *Job type JobList ¶ type JobList []Job func (JobList) Len ¶ func (l JobList) Len() int func (JobList) Less ¶ func (l JobList) Less(i, j int) bool func (JobList) Swap ¶ func (l JobList) Swap(i, j int) type Parser ¶ type Parser struct { FromTime time.Time ToTime time.Time } func NewParser ¶ func NewParser(fromTime time.Time, toTime time.Time) *Parser func (Parser) Parse ¶ func (p Parser) Parse(r io.Reader) JobList func (Parser) ParseLine ¶ func (p Parser) ParseLine(line string) JobList Source Files ¶ View all Source files app.gojob.goparser.go Directories ¶ Show internal Expand all Path Synopsis cmd croneye command Click to show internal directories. Click to hide internal directories.