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.

16 lines
485B

  1. #include "arjo_modules.hpp"
  2. RACK_PLUGIN_MODEL_DECLARE(arjo_modules, Seq);
  3. RACK_PLUGIN_MODEL_DECLARE(arjo_modules, Count);
  4. RACK_PLUGIN_MODEL_DECLARE(arjo_modules, Switch);
  5. RACK_PLUGIN_INIT(arjo_modules) {
  6. RACK_PLUGIN_INIT_ID();
  7. RACK_PLUGIN_INIT_VERSION("0.6.0");
  8. RACK_PLUGIN_INIT_WEBSITE("https://github.com/ArjoNagelhout/arjo_modules");
  9. RACK_PLUGIN_MODEL_ADD(arjo_modules, Seq);
  10. RACK_PLUGIN_MODEL_ADD(arjo_modules, Count);
  11. RACK_PLUGIN_MODEL_ADD(arjo_modules, Switch);
  12. }