Packages

Remodel is an Elixir presenter package used to transform data structures. This is especially useful when a desired representation doesn't match the schema defined within the database.

Current section

Files

Jump to
remodel lib remodel.ex
Raw

lib/remodel.ex

defmodule Remodel do
defmacro __using__(_) do
quote do
use Remodel.Schema
end
end
end