summaryrefslogtreecommitdiff
path: root/priv/templates/simplelib.erl
diff options
context:
space:
mode:
Diffstat (limited to 'priv/templates/simplelib.erl')
-rw-r--r--priv/templates/simplelib.erl20
1 files changed, 20 insertions, 0 deletions
diff --git a/priv/templates/simplelib.erl b/priv/templates/simplelib.erl
new file mode 100644
index 0000000..384caa5
--- /dev/null
+++ b/priv/templates/simplelib.erl
@@ -0,0 +1,20 @@
+%% See LICENSE for licensing information.
+%% -*- coding: utf-8 -*-
+-module({{libid}}).
+
+%% {{libid}}: {{libid}} library's entry point.
+
+-export([my_func/0]).
+
+
+%% API
+
+my_func() ->
+ ok().
+
+%% Internals
+
+ok() ->
+ ok.
+
+%% End of Module.