osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-s1gw/+/37050?usp=email )
Change subject: osmo_s1gw: add main/1 for rebar's escriptize target ......................................................................
osmo_s1gw: add main/1 for rebar's escriptize target
Change-Id: Icb20a3c32fe4236522ccbc83d322b248a074580c --- A src/osmo_s1gw.erl 1 file changed, 18 insertions(+), 0 deletions(-)
Approvals: osmith: Looks good to me, approved; Verified
diff --git a/src/osmo_s1gw.erl b/src/osmo_s1gw.erl new file mode 100644 index 0000000..737fc16 --- /dev/null +++ b/src/osmo_s1gw.erl @@ -0,0 +1,9 @@ +-module(osmo_s1gw). + +-export([main/1]). + +main(_Args) -> + application:ensure_all_started(?MODULE), + timer:sleep(infinity). + +%% vim:set ts=4 sw=4 et: