Sha256: 0aa65dc42fdf5f0e68c96cf8b8fa11eb6d1d4db6a8783ea49e643480043cfdd1
Contents?: true
Size: 246 Bytes
Versions: 1
Compression:
Stored size: 246 Bytes
Contents
-module(ernie_server_app). -behaviour(application). -export([boot/0, start/2, stop/1]). boot() -> application:start(ernie_server_app). start(_Type, _Args) -> logger_sup:start_link(), ernie_server_sup:start_link(). stop(_State) -> ok.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ernie-2.0.0 | elib/ernie_server_app.erl |