Skip to content

Instantly share code, notes, and snippets.

@taketora26
Created January 27, 2022 02:26
Show Gist options
  • Save taketora26/afcf567a9ae945b722ab917f8ed35e48 to your computer and use it in GitHub Desktop.
Save taketora26/afcf567a9ae945b722ab917f8ed35e48 to your computer and use it in GitHub Desktop.
App.scala
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