mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-24 23:09:23 +08:00
7 lines
310 B
Elixir
7 lines
310 B
Elixir
defmodule LivebookProto.UserConnected do
|
|
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
|
|
|
|
field :name, 1, type: :string
|
|
field :secrets, 2, repeated: true, type: LivebookProto.Secret
|
|
field :file_systems, 3, repeated: true, type: LivebookProto.FileSystem, json_name: "fileSystems"
|
|
end
|