erlang网络库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
159 B

4 years ago
5 years ago
3 years ago
5 years ago
3 years ago
5 years ago
  1. -module(eNet_app).
  2. -behaviour(application).
  3. -export([start/2, stop/1]).
  4. start(_StartType, _StartArgs) ->
  5. eNet_sup:start_link().
  6. stop(_State) ->
  7. ok.