summaryrefslogtreecommitdiff
path: root/priv/templates/simplemod.erl
blob: 99d0196a8ddcd95dd69923df754336b78b052d02 (plain)
1
2
3
4
5
6
7
8
9
10
-module({{modid}}).

-export([my_func/0]).

-ifdef(TEST).
-compile(export_all).
-endif.

my_func() ->
    ok.