emqx_node_rebalance.app.src 516 B

123456789101112131415161718192021
  1. {application, emqx_node_rebalance, [
  2. {description, "EMQX Node Rebalance"},
  3. {vsn, "5.0.0"},
  4. {registered, [
  5. emqx_node_rebalance_sup,
  6. emqx_node_rebalance,
  7. emqx_node_rebalance_agent,
  8. emqx_node_rebalance_evacuation
  9. ]},
  10. {applications, [
  11. kernel,
  12. stdlib
  13. ]},
  14. {mod, {emqx_node_rebalance_app, []}},
  15. {env, []},
  16. {modules, []},
  17. {links, [
  18. {"Homepage", "https://www.emqx.com/"},
  19. {"Github", "https://github.com/emqx"}
  20. ]}
  21. ]}.