github.com/rochacon/deis@v1.0.2-0.20150903015341-6839b592a1ff/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  }