fix: Missing __identifier__ field in compose DSL struct.

This commit is contained in:
James Harton 2024-05-24 21:43:53 +12:00
parent 884afbd90b
commit 9410f7d37a
Signed by: james
GPG key ID: 90E82DAA13F624F4

View file

@ -4,11 +4,12 @@ defmodule Reactor.Dsl.Compose do
See the `d:Reactor.compose`.
"""
defstruct arguments: [], name: nil, reactor: nil
defstruct __identifier__: nil, arguments: [], name: nil, reactor: nil
alias Reactor.{Builder, Dsl}
@type t :: %Dsl.Compose{
__identifier__: any,
arguments: [Dsl.Argument.t()],
name: any,
reactor: module | Reactor.t()