Packages

Digraph viewer provides a visual representation of a digraph model through a web based interface

Current section

Files

Jump to
digraph_viewer src digraph_viewer_app.erl
Raw

src/digraph_viewer_app.erl

%%%-------------------------------------------------------------------
%% @doc digraph_viewer public API
%% @end
%%%-------------------------------------------------------------------
-module(digraph_viewer_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%%====================================================================
%% API
%%====================================================================
start(_StartType, _StartArgs) ->
ok = graph_server:start_server(),
digraph_viewer_sup:start_link().
%%--------------------------------------------------------------------
stop(_State) ->
ok.
%%====================================================================
%% Internal functions
%%====================================================================