Skip to content

Instantly share code, notes, and snippets.

@rlb3
Created April 2, 2021 14:31
Show Gist options
  • Save rlb3/eec209b5a83f027bb1c0caefd103ae36 to your computer and use it in GitHub Desktop.
Save rlb3/eec209b5a83f027bb1c0caefd103ae36 to your computer and use it in GitHub Desktop.
Plugin Ideas
with {:ok, list} <- :application.get_key(:my_app, :modules) do
list
|> Enum.filter(& &1 |> Module.split |> Enum.take(1) == ~w|UserHelpers|)
|> Enum.reduce(user_data, fn m, acc -> apply(m, :create, acc) end)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment