@@ -0,0 +1,9 @@
+-module(svg).
+-compile(export_all).
+-behaviour(application).
+-export([start/2, stop/1, init/1]).
+
+start(_StartType, _StartArgs) -> supervisor:start_link({local, ?MODULE}, ?MODULE, []).
+stop(_State) -> ok.
+init([]) -> {ok, {{one_for_one, 5, 10}, []}}.
@@ -1,6 +1,7 @@
-module(element_xlink).
-author('Konstantin Zakablukovsky').
-include("svg.hrl").
+-include_lib("nitro/include/event.hrl").
-compile(export_all).
render_element(Record) ->
+{application, svg, [
+ {description, "SVG Elements"},
+ {vsn, "4.7.4"},
+ {applications, [kernel, stdlib]},
+ {modules, []},
+ {registered, []},
+ {mod, { svg, []}},
+ {env, []}
+]}.