Created
March 29, 2016 14:17
-
-
Save guilleiguaran/a8b27fb8ab06ab49ae62 to your computer and use it in GitHub Desktop.
This file contains 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 MyMod do | |
defmodule Base do | |
def __using__(_) do | |
end | |
end | |
@mod Application.get_env(:my_app, :mod, MyMod.Base) | |
use @mod | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment