您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
370 B

  1. %%%-------------------------------------------------------------------
  2. %% @doc {{name}} public API
  3. %% @end
  4. %%%-------------------------------------------------------------------
  5. -module({{name}}_app).
  6. -behaviour(application).
  7. -export([start/2, stop/1]).
  8. start(_StartType, _StartArgs) ->
  9. {{name}}_sup:start_link().
  10. stop(_State) ->
  11. ok.
  12. %% internal functions