mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
19 lines
174 B
Erlang
19 lines
174 B
Erlang
|
-module({{libid}}).
|
||
|
|
||
|
%% {{libid}}: {{libid}} library's entry point.
|
||
|
|
||
|
-export([my_func/0]).
|
||
|
|
||
|
|
||
|
%% API
|
||
|
|
||
|
my_func() ->
|
||
|
ok().
|
||
|
|
||
|
%% Internals
|
||
|
|
||
|
ok() ->
|
||
|
ok.
|
||
|
|
||
|
%% End of Module.
|