diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-01 20:41:48 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-01 20:41:48 -0600 |
| commit | ffa3d553f693494c218a0244c946ba83dfbf7cd1 (patch) | |
| tree | 092a824dad118c37960ab67da98cdbc445a35d2b /lib/trongle_ssh.ex | |
| download | tronglessh-main.tar.gz tronglessh-main.zip | |
Diffstat (limited to 'lib/trongle_ssh.ex')
| -rw-r--r-- | lib/trongle_ssh.ex | 11 |
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 |
