package crontab import ( "time" ) type Expression interface { Next(fromTime time.Time) time.Time } type CrontabLine struct { Expression Expression Schedule string Command string } type Job struct { CrontabLine Position int } type Context struct { Shell string Environ map[string]string Timezone *time.Location } type Crontab struct { Jobs []*Job Context *Context }