Current section

Files

Jump to
live_query lib live_query protocol data.ex
Raw

lib/live_query/protocol/data.ex

defmodule LiveQuery.Protocol.Data do
@moduledoc """
Returned in response to a `LiveQuery.Protocol.Read` call (when the query exists).
"""
@enforce_keys [:query_key, :value]
defstruct [:query_key, :value]
end