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.erl18
1 files changed, 0 insertions, 18 deletions
diff --git a/priv/templates/simplelib.erl b/priv/templates/simplelib.erl
deleted file mode 100644
index 2c4451f..0000000
--- a/priv/templates/simplelib.erl
+++ /dev/null
@@ -1,18 +0,0 @@
--module({{libid}}).
-
-%% {{libid}}: {{libid}} library's entry point.
-
--export([my_func/0]).
-
-
-%% API
-
-my_func() ->
- ok().
-
-%% Internals
-
-ok() ->
- ok.
-
-%% End of Module.