Skip to content

Instantly share code, notes, and snippets.

@themusicman
Created June 10, 2024 13:38
Show Gist options
  • Save themusicman/4d62e995fb12936f8eb50d06ed207df1 to your computer and use it in GitHub Desktop.
Save themusicman/4d62e995fb12936f8eb50d06ed207df1 to your computer and use it in GitHub Desktop.
Elixir Help Module
defmodule Help do
@moduledoc false
defmacro __using__(_opts) do
quote do
import Ecto.Changeset
import Ecto.Query
# other import, alais, and code ...
:ok
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment