summaryrefslogtreecommitdiff
path: root/priv/templates/simplelib.erl
blob: 2c4451f1915816000b5b5eda81dfe2178c0a498b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-module({{libid}}).

%% {{libid}}: {{libid}} library's entry point.

-export([my_func/0]).


%% API

my_func() ->
    ok().

%% Internals

ok() ->
    ok.

%% End of Module.