package execution import jakarta.inject.{Inject, Singleton} import org.apache.pekko.actor.ActorSystem import play.api.libs.concurrent.CustomExecutionContext @Singleton class CryptoExecutionContext @Inject()(system: ActorSystem) extends CustomExecutionContext(system, "pekko.actor.crypto-dispatcher")