mysql_poolboy_app.erl 990 B

12345678910111213141516171819202122232425262728
  1. %% MySQL/OTP + Poolboy
  2. %% Copyright (C) 2015 Raoul Hess
  3. %%
  4. %% This file is part of MySQL/OTP + Poolboy.
  5. %%
  6. %% MySQL/OTP + Poolboy is free software: you can redistribute it and/or modify it under
  7. %% the terms of the GNU Lesser General Public License as published by the Free
  8. %% Software Foundation, either version 3 of the License, or (at your option)
  9. %% any later version.
  10. %%
  11. %% This program is distributed in the hope that it will be useful, but WITHOUT
  12. %% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. %% FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
  14. %% more details.
  15. %%
  16. %% You should have received a copy of the GNU Lesser General Public License
  17. %% along with this program. If not, see <https://www.gnu.org/licenses/>.
  18. -module(mysql_poolboy_app).
  19. -behaviour(application).
  20. -export([start/2, stop/1]).
  21. start(_Type, _Args) ->
  22. supervisor:start_link({local, mysql_poolboy_sup}, mysql_poolboy_sup, []).
  23. stop(_State) ->
  24. ok.