Current section
Files
Jump to
Current section
Files
lib/bb/dsl/bridge.ex
# SPDX-FileCopyrightText: 2025 James Harton
#
# SPDX-License-Identifier: Apache-2.0
defmodule BB.Dsl.Bridge do
@moduledoc "A parameter protocol bridge for remote access."
defstruct __identifier__: nil,
__spark_metadata__: nil,
name: nil,
child_spec: nil
alias Spark.Dsl.Entity
@type child_spec :: module | {module, keyword()}
@type t :: %__MODULE__{
__identifier__: any,
__spark_metadata__: Entity.spark_meta(),
name: atom,
child_spec: child_spec
}
end