diff options
Diffstat (limited to 'src/rebar_config.erl')
-rw-r--r-- | src/rebar_config.erl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/rebar_config.erl b/src/rebar_config.erl index a030e2c..751e088 100644 --- a/src/rebar_config.erl +++ b/src/rebar_config.erl @@ -35,6 +35,14 @@ -include("rebar.hrl"). +-record(config, { dir :: file:filename(), + opts :: list() }). + +%% Types that can be used from other modules -- alphabetically ordered. +-export_type([config/0]). + +%% data types +-opaque config() :: #config{}. %% =================================================================== %% Public API |