func (r extractRepo) Update(extract content.Extract) error {
	start := time.Now()

	err := r.Extract.Update(extract)

	r.log.Infof("repo.Extract.Update took %s", time.Now().Sub(start))

	return err
}