Generates a PhoenixMicro saga module with stub steps and compensations.
Usage
mix phoenix_micro.gen.saga MyApp.PlaceOrderSaga reserve_inventory charge_paymentOptions
--no-compensate Generate steps without compensation stubsExample
mix phoenix_micro.gen.saga MyApp.Checkout.PlaceOrderSaga \
reserve_inventory \
charge_payment \
create_shipment \
notify_customerGenerates lib/my_app/checkout/place_order_saga.ex and a matching test file.