25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
363 B

  1. -module({{appid}}_app).
  2. -behaviour(application).
  3. %% Application callbacks
  4. -export([start/2, stop/1]).
  5. %% ===================================================================
  6. %% Application callbacks
  7. %% ===================================================================
  8. start(_StartType, _StartArgs) ->
  9. {{appid}}_sup:start_link().
  10. stop(_State) ->
  11. ok.