summaryrefslogtreecommitdiff
path: root/src/main/scala/com/tylerstonge/honeypot/Main.scala
blob: 80a9088bcb93cae0930250aec480bd94d7751cce (plain)
1
2
3
4
5
6
7
8
package com.tylerstonge.honeypot

import akka.actor.{ActorSystem, Props}

object Main extends App {
  val system = ActorSystem("honeypot_system")
  val supervisor = system.actorOf(Props[Supervisor], name = "honeypot-supervisor")
}