aboutsummaryrefslogtreecommitdiff
path: root/lib/trongle_ssh.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/trongle_ssh.ex')
-rw-r--r--lib/trongle_ssh.ex11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/trongle_ssh.ex b/lib/trongle_ssh.ex
new file mode 100644
index 0000000..a872149
--- /dev/null
+++ b/lib/trongle_ssh.ex
@@ -0,0 +1,11 @@
+defmodule TrongleSSH.Application do
+ use Application
+
+ def start(_, _) do
+ children = [
+ TrongleSSH.SSH.Daemon
+ ]
+
+ Supervisor.start_link(children, strategy: :one_for_one, name: TrongleSSH.Supervisor)
+ end
+end