mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-14 15:36:27 +08:00
14 lines
362 B
Elixir
14 lines
362 B
Elixir
defmodule LivebookProto.Request do
|
|
@moduledoc false
|
|
use Protobuf, protoc_gen_elixir_version: "0.11.0", syntax: :proto3
|
|
|
|
oneof :type, 0
|
|
|
|
field :id, 1, type: :int32
|
|
field :handshake, 2, type: LivebookProto.HandshakeRequest, oneof: 0
|
|
|
|
field :create_secret, 3,
|
|
type: LivebookProto.CreateSecretRequest,
|
|
json_name: "createSecret",
|
|
oneof: 0
|
|
end
|