Current section

Files

Jump to
bolty lib bolty bolt_protocol server_response.ex
Raw

lib/bolty/bolt_protocol/server_response.ex

# SPDX-FileCopyrightText: 2024 bolty contributors
# SPDX-License-Identifier: Apache-2.0
defmodule Bolty.BoltProtocol.ServerResponse do
@moduledoc false
import Record
defrecord :statement_result, [
:result_run,
:result_pull,
:query
]
defrecord :pull_result, [
:records,
:success_data
]
end