ExExport (ex_export v0.1.0)
This module inspects another module for public functions and generates the defdelegate needed to add them to the local modules name space
Link to this section Summary
Functions
require in the module and them call export for each module you want to import. ## Examples defmodule Sample do
Link to this section Functions
require in the module and them call export for each module you want to import. ## Examples defmodule Sample do
require ExExport
alias Sample.Actions.Greet
ExExport.export(Greet)
ExExport.export(Sample.Actions.Farewell)
end