Packages

Underlying NIF to use the termbox2 C API

Retired package: Deprecated - termbox2-nif was forked from this, better maintainer

Current section

Files

Jump to
termbox2 src termbox2_app.erl
Raw

src/termbox2_app.erl

%%%-------------------------------------------------------------------
%% @doc termbox2 public API
%% @end
%%%-------------------------------------------------------------------
-module(termbox2_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
termbox2_sup:start_link().
stop(_State) ->
ok.
%% internal functions