Current section

Files

Jump to
bluesky_ex lib credentials.ex
Raw

lib/credentials.ex

defmodule BlueskyEx.Client.Credentials do
@moduledoc """
A struct representing the credentials for a Bluesky user.
"""
@type t :: %__MODULE__{
username: String.t(),
password: String.t()
}
defstruct [:username, :password]
end