summaryrefslogtreecommitdiff
path: root/src/main/scala/com/tylerstonge/honeypot/Main.scala
diff options
context:
space:
mode:
authorTyler St. Onge <tylertstonge@gmail.com>2020-07-18 01:24:12 -0400
committerTyler St. Onge <tylertstonge@gmail.com>2020-07-18 01:24:12 -0400
commit248f358e3a7602e5e3e4149ebbd0e7f1b6fa9e37 (patch)
tree671f263b351fe68b58207af6de90531a9fe9663a /src/main/scala/com/tylerstonge/honeypot/Main.scala
initial commit
Diffstat (limited to 'src/main/scala/com/tylerstonge/honeypot/Main.scala')
-rw-r--r--src/main/scala/com/tylerstonge/honeypot/Main.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/scala/com/tylerstonge/honeypot/Main.scala b/src/main/scala/com/tylerstonge/honeypot/Main.scala
new file mode 100644
index 0000000..3c01fc8
--- /dev/null
+++ b/src/main/scala/com/tylerstonge/honeypot/Main.scala
@@ -0,0 +1,9 @@
+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")
+}