Created
January 27, 2022 02:26
-
-
Save taketora26/afcf567a9ae945b722ab917f8ed35e48 to your computer and use it in GitHub Desktop.
App.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sample | |
import akka.actor.typed.ActorSystem | |
object App { | |
def main(args: Array[String]): Unit = { | |
ActorSystem[LeaderActor.Command](LeaderActor(Modules), "LeaderActor") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment