Current section
Files
Jump to
Current section
Files
lib/eyeon/options.ex
defmodule Eyeon.Options do
@moduledoc """
Defines the available encoding and decoding options.
"""
def options do
[
encoding: [:binary, :text],
symbols: [:raw, :complete],
shared_symbol_tables: [],
]
end
# def format_encode_opts(opts) do
# Enum.into(opts, %{encoding: :text})
# end
# def format_decode_opts(opts) do
# Enum.into(opts, %{symbols: :complete})
# end
end