Current section

Files

Jump to
altworx_runbox lib runbox scenario_template.ex
Raw

lib/runbox/scenario_template.ex

defmodule Runbox.ScenarioTemplate do
@moduledoc group: :internal
@moduledoc """
Holds information about scenario template.
"""
defstruct [:module, :info]
@type t :: %__MODULE__{
module: module(),
info: term()
}
end