Skip to content

Instantly share code, notes, and snippets.

@themusicman
Created August 4, 2025 19:13
Show Gist options
  • Save themusicman/c7406f3e83d7b9c95bceadfea88a7b43 to your computer and use it in GitHub Desktop.
Save themusicman/c7406f3e83d7b9c95bceadfea88a7b43 to your computer and use it in GitHub Desktop.
defmodule Help do
@moduledoc """
Lets you setup aliases for use in remote console and in dev use too
## Examples
iex> use Help
"""
defmacro __using__(_) do
quote do
# Ecto
alias MyApp.Repo
# Other aliases
# Query helpers
import Ecto.Query, warn: false
import Ecto.Changeset
:ok
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment