Current section

Files

Jump to
cake src cake@query@epilog.erl
Raw

src/cake@query@epilog.erl

-module(cake@query@epilog).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([epilog/1, no_epilog/0]).
-spec epilog(binary()) -> cake@internal@query:epilog().
epilog(Eplg) ->
case Eplg of
<<""/utf8>> ->
no_epilog;
_ ->
{epilog, Eplg}
end.
-spec no_epilog() -> cake@internal@query:epilog().
no_epilog() ->
no_epilog.