1 2 3 4 5 6 7 8 9
-module(mem3_app). -behaviour(application). -export([start/2, stop/1]). start(_Type, []) -> mem3_sup:start_link(). stop([]) -> ok.