Current section
Files
Jump to
Current section
Files
src/parrot.erl
-module(parrot).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([main/0]).
-file("src/parrot.gleam", 5).
-spec main() -> {ok, nil} | {error, nil}.
main() ->
Config = {config,
<<"sql/psql/gen/codegen.json"/utf8>>,
<<"gen/sql.gleam"/utf8>>,
none},
parrot@codegen:codegen_from_config(Config).