mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-23 11:57:02 +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
|