github.com/dustinrc/deis@v1.10.1-0.20150917223407-0894a5fb979e/mesos/pkg/types/cron.go (about)

     1  package types
     2  
     3  // Cron struct executes code with a time interval
     4  type Cron struct {
     5  	Frequency string
     6  	Code      func()
     7  }