Current section
Files
Jump to
Current section
Files
lib/ua_inspector/result.ex
defmodule UAInspector.Result do
@moduledoc """
Result struct.
"""
alias UAInspector.Result
defstruct [
user_agent: "",
client: :unknown,
device: %Result.Device{},
os: :unknown
]
end