summaryrefslogtreecommitdiff
path: root/src/main/scala/com/tylerstonge/honeypot/Main.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/com/tylerstonge/honeypot/Main.scala')
-rw-r--r--src/main/scala/com/tylerstonge/honeypot/Main.scala7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main/scala/com/tylerstonge/honeypot/Main.scala b/src/main/scala/com/tylerstonge/honeypot/Main.scala
index 3c01fc8..0d47de4 100644
--- a/src/main/scala/com/tylerstonge/honeypot/Main.scala
+++ b/src/main/scala/com/tylerstonge/honeypot/Main.scala
@@ -1,9 +1,8 @@
package com.tylerstonge.honeypot
import akka.actor.{ActorSystem, Props}
-import com.tylerstonge.honeypot.ftp.FtpListener
object Main extends App {
- val system = ActorSystem("hello-system")
- val listener = system.actorOf(Props[FtpListener], name = "ftp-listener")
-}
+ val system = ActorSystem("honeypot_system")
+ val listener = system.actorOf(Props[Supervisor], name = "honeypot-supervisor")
+} \ No newline at end of file