%% Copyright (c) 2026 Benoit Chesneau. Licensed under the MIT License. %% See the LICENSE file at the project root. %% -module(erllama_app). -behaviour(application). -export([start/2, stop/1]). start(_StartType, _StartArgs) -> ok = erllama_cache_counters:init(), erllama_sup:start_link(). stop(_State) -> ok.