# `Dialup.Contexts`
[🔗](https://github.com/SouichiroTsujimoto/Dialup/blob/main/lib/contexts.ex#L1)

Declarative bounded-context map for Dialup Commanded applications.

    defmodule MyApp.Contexts do
      use Dialup.Contexts

      context :ordering do
        commanded_context MyApp.Ordering
        aggregates [MyApp.Ordering.Aggregates.Order]
        events_out [:OrderConfirmed]
        events_in [:PaymentCompleted]
      end
    end

# `aggregates`
*macro* 

# `commanded_context`
*macro* 

# `context`
*macro* 

# `events_in`
*macro* 

# `events_out`
*macro* 

---

*Consult [api-reference.md](api-reference.md) for complete listing*
