lib/runbox/scenario_template.ex
defmodule Runbox.ScenarioTemplate do
@moduledoc """
Holds information about scenario template.
Instances of this struct are created internally by Runbox. It is documented only because
other public APIs may optionally consume this struct.
"""
defstruct [:module, :info]
@type t :: %__MODULE__{
module: module(),
info: term()
}
end