Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
936b397 verified
Raw
History Blame Contribute Delete
406 Bytes
defmodule Plausible.InstallationSupport.Result do
@moduledoc """
Diagnostics interpretation result.
## Example
ok?: false,
data: nil,
errors: [error.message],
recommendations: [%{text: error.recommendation, url: error.url}]
ok?: true,
data: %{},
errors: [],
recommendations: []
"""
defstruct ok?: false, errors: [], recommendations: [], data: nil
@type t :: %__MODULE__{}
end