Packages

FalkorDB client for Elixir built on top of Redix

Current section

Files

Jump to
falkordb lib falkordb value duration.ex
Raw

lib/falkordb/value/duration.ex

defmodule FalkorDB.Value.Duration do
@moduledoc """
Compact duration value representation.
"""
@type t :: %__MODULE__{total_seconds: integer()}
defstruct [:total_seconds]
end