lib/runbox/scenario/template.ex

defmodule Runbox.Scenario.Template do
  @moduledoc """
  Struct representing scenario module.
  """

  @enforce_keys [:mod, :info]
  defstruct [:mod, :info]

  @type t :: %__MODULE__{mod: module(), info: term()}
end