Current section

Files

Jump to
alf lib manager processing_options.ex
Raw

lib/manager/processing_options.ex

defmodule ALF.Manager.ProcessingOptions do
defstruct chunk_every: 10,
return_ips: false
def new(opts) when is_list(opts) do
struct(__MODULE__, Enum.into(opts, %{}))
end
end