Packages

wrapper around geonames.org

Current section

Files

Jump to
egeonames src egeonames_app.erl
Raw

src/egeonames_app.erl

-module(egeonames_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%% ===================================================================
%% Application callbacks
%% ===================================================================
start(_StartType, _StartArgs) ->
egeonames_sup:start_link().
stop(_State) ->
ok.