func extractStarted(obj interface{}) moleculer.LifecycleFunc {
    starter, hasIt := obj.(HasStarted)
    if hasIt {
        return starter.Started
    }