mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-06 04:54:29 +08:00
10 lines
248 B
Elixir
10 lines
248 B
Elixir
defmodule LiveBook.Evaluator.IdentityFormatter do
|
|
@moduledoc false
|
|
|
|
# The default formatter leaving the response unchanged.
|
|
|
|
@behaviour LiveBook.Evaluator.Formatter
|
|
|
|
@impl true
|
|
def format(evaluation_response), do: evaluation_response
|
|
end
|