Packages

Rebar3 plugin to package Erlang escripts and releases in standalone executables

Current section

Files

Jump to
cassone src cassone.erl
Raw

src/cassone.erl

%% SPDX-License-Identifier: Apache-2.0
%% SPDX-FileCopyrightText: 2025 Stritzinger GmbH
-module(cassone).
-export([init/1]).
-export_types([os/0, arch/0]).
-type os() :: linux | macos.
-type arch() :: x86_64 | aarch64.
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
{ok, State1} = cassone_prv:init(State),
{ok, State1}.