mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-18 01:16:29 +08:00
7 lines
215 B
Elixir
7 lines
215 B
Elixir
defmodule LivebookProto.FieldError do
|
|
@moduledoc false
|
|
use Protobuf, protoc_gen_elixir_version: "0.11.0", syntax: :proto3
|
|
|
|
field :field, 1, type: :string
|
|
field :details, 2, repeated: true, type: :string
|
|
end
|