Implemented login

This commit is contained in:
2026-07-09 18:21:23 +03:00
parent e06c53a9ff
commit 5aa6e30c90
7 changed files with 135 additions and 0 deletions
@@ -0,0 +1,8 @@
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")