Current section
Files
Jump to
Current section
Files
src/cake_sqlight.erl
-module(cake_sqlight).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/cake_sqlight.gleam").
-export([main/0]).
-if(?OTP_RELEASE >= 27).
-define(MODULEDOC(Str), -moduledoc(Str)).
-define(DOC(Str), -doc(Str)).
-else.
-define(MODULEDOC(Str), -compile([])).
-define(DOC(Str), -compile([])).
-endif.
-file("src/cake_sqlight.gleam", 6).
?DOC(false).
-spec main() -> nil.
main() ->
_pipe = (<<"\n"/utf8,
"cake_sqlight is an adapter library and cannot be invoked directly."/utf8>>),
gleam_stdlib:println(_pipe).