Skip to content

Instantly share code, notes, and snippets.

View zarinfam's full-sized avatar

Saeed Zarinfam zarinfam

View GitHub Profile
@zarinfam
zarinfam / actor.scala
Last active March 22, 2025 14:01
IntelliJ IDEA Live Template for an Akka actor
import akka.actor.{ Actor, Props }
class $NAME$ extends Actor {
override def receive = ???
}
object $NAME$ {
def props: Props = Props(new $NAME$)
}