Current section

Files

Jump to
reach lib reach map effect_call.ex
Raw

lib/reach/map/effect_call.ex

defmodule Reach.Map.EffectCall do
@moduledoc "Struct for a call site with its classified effect."
@derive Jason.Encoder
defstruct [:effect, :call]
def new(attrs), do: struct!(__MODULE__, attrs)
end