summaryrefslogtreecommitdiff
path: root/src/main/scala/com/tylerstonge/honeypot/Main.scala
blob: 3c01fc814f202cbdd08a32536fa838462b11f7dc (plain)
1
2
3
4
5
6
7
8
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")
}