Sha256: ec5d533a334af541580ed2fdae41b398f279f6cbc1aedafea225fb2e0c54681a
Contents?: true
Size: 537 Bytes
Versions: 6
Compression:
Stored size: 537 Bytes
Contents
%% @author author <author@example.com> %% @copyright YYYY author. %% @doc Callbacks for the cloudpanel application. -module(cloudpanel_app). -author('author <author@example.com>'). -behaviour(application). -export([start/2,stop/1]). %% @spec start(_Type, _StartArgs) -> ServerRet %% @doc application start callback for cloudpanel. start(_Type, _StartArgs) -> cloudpanel_deps:ensure(), cloudpanel_sup:start_link(). %% @spec stop(_State) -> ServerRet %% @doc application stop callback for cloudpanel. stop(_State) -> ok.
Version data entries
6 entries across 6 versions & 1 rubygems