From ffa3d553f693494c218a0244c946ba83dfbf7cd1 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sun, 1 Oct 2023 20:41:48 -0600 Subject: init --- lib/trongle_ssh.ex | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/trongle_ssh.ex (limited to 'lib/trongle_ssh.ex') 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 -- cgit v1.3