def schedule()

in app/com/gu/contentapi/sanity/utils/QuartzScheduler.scala [27:30]


  def schedule(name: String, g: => Unit): ScheduleHolder = {
    val wrap: JobExecutionContext => Unit = x => g
    scheduleWithContext(name, wrap)
  }