Created
August 4, 2025 19:13
-
-
Save themusicman/c7406f3e83d7b9c95bceadfea88a7b43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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