Packages

Client library that reads secrets and other configuration from 1Password Connect Servers

Current section

Files

Jump to
one_password_connect lib connect section.ex
Raw

lib/connect/section.ex

defmodule OnePassword.Connect.Section do
@moduledoc """
A way to categorize fields inside a vault item.
Purely informational purposes and dumb data in this library
and there is no functionality around it other than whatever you
want to do yourself with it.
"""
@type t :: %__MODULE__{
id: String.t(),
label: String.t() | nil
}
defstruct [
:id,
:label
]
end