Files
api/app/execution/CryptoExecutionContext.scala
2026-07-09 18:21:23 +03:00

9 lines
302 B
Scala

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")