mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-24 14:58:35 +08:00
7 lines
209 B
Elixir
7 lines
209 B
Elixir
defmodule LivebookProto.SessionResponse do
|
|
@moduledoc false
|
|
use Protobuf, protoc_gen_elixir_version: "0.11.0", syntax: :proto3
|
|
|
|
field :id, 1, type: :string
|
|
field :user, 2, type: LivebookProto.User
|
|
end
|