diff options
Diffstat (limited to 'priv/templates/plugin.erl')
-rw-r--r-- | priv/templates/plugin.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/priv/templates/plugin.erl b/priv/templates/plugin.erl index abf4648..018dd0e 100644 --- a/priv/templates/plugin.erl +++ b/priv/templates/plugin.erl @@ -1,9 +1,9 @@ --module({{name}}). +-module('{{name}}'). -behaviour(provider). -export([init/1, do/1, format_error/1]). --define(PROVIDER, {{name}}). +-define(PROVIDER, '{{name}}'). -define(DEPS, [app_discovery]). %% =================================================================== |