-module(mlx_app). -behaviour(application). -export([start/2, stop/1]). -spec start(application:start_type(), term()) -> {ok, pid()} | {error, term()}. -spec stop(term()) -> ok. start(_StartType, _StartArgs) -> mlx_sup:start_link(). stop(_State) -> ok.