aboutsummaryrefslogtreecommitdiff
path: root/lib/trongle_ssh.ex
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-10-01 20:41:48 -0600
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-10-01 20:41:48 -0600
commitffa3d553f693494c218a0244c946ba83dfbf7cd1 (patch)
tree092a824dad118c37960ab67da98cdbc445a35d2b /lib/trongle_ssh.ex
downloadtronglessh-main.tar.gz
tronglessh-main.zip
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