diff options
Diffstat (limited to 'priv/templates/simplelib.erl')
-rw-r--r-- | priv/templates/simplelib.erl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/priv/templates/simplelib.erl b/priv/templates/simplelib.erl new file mode 100644 index 0000000..2c4451f --- /dev/null +++ b/priv/templates/simplelib.erl @@ -0,0 +1,18 @@ +-module({{libid}}). + +%% {{libid}}: {{libid}} library's entry point. + +-export([my_func/0]). + + +%% API + +my_func() -> + ok(). + +%% Internals + +ok() -> + ok. + +%% End of Module. |