summaryrefslogtreecommitdiff
path: root/priv/templates/simplemod.erl
blob: 2baff59eb90431918ee0b3d8db12505f61f5d319 (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.