summaryrefslogtreecommitdiff
path: root/src/main/scala/com/tylerstonge/honeypot/Main.scala
diff options
context:
space:
mode:
authorTyler St. Onge <tylertstonge@gmail.com>2020-07-25 22:38:14 -0400
committerTyler St. Onge <tylertstonge@gmail.com>2020-07-25 22:38:14 -0400
commit747b6af76b23650756811d896bf76b4331419784 (patch)
tree2e942c8296567cbe4d57f205f72029a62829bdda /src/main/scala/com/tylerstonge/honeypot/Main.scala
parent945332ca057383f258c78fd15cbc22f8b8d58a83 (diff)
refine ftp component and add configuration capabilities
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