Current section
Files
Jump to
Current section
Files
lib/ua_inspector/result/bot_producer.ex
defmodule UAInspector.Result.BotProducer do
@moduledoc """
Bot producer result struct.
"""
@type t :: %__MODULE__{
name: String.t() | :unknown,
url: String.t() | :unknown
}
defstruct name: :unknown,
url: :unknown
end