diff options
author | Calvin Morrison <calvin@pobox.com> | 2025-09-03 21:15:36 -0400 |
---|---|---|
committer | Calvin Morrison <calvin@pobox.com> | 2025-09-03 21:15:36 -0400 |
commit | 49fa5aa2a127bdf8924d02bf77e5086b39c7a447 (patch) | |
tree | 61d86a7705dacc9fddccc29fa79d075d83ab8059 /server/src/jchat_app.erl |
Diffstat (limited to 'server/src/jchat_app.erl')
-rw-r--r-- | server/src/jchat_app.erl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server/src/jchat_app.erl b/server/src/jchat_app.erl new file mode 100644 index 0000000..eba0cca --- /dev/null +++ b/server/src/jchat_app.erl @@ -0,0 +1,10 @@ +-module(jchat_app). +-behaviour(application). + +-export([start/2, stop/1]). + +start(_StartType, _StartArgs) -> + jchat_sup:start_link(). + +stop(_State) -> + ok. |