-module(erlbot). -behavior(application). -export([ start/2, stop/1 ]). % TODO: probably should take in a config file through _Args start(_Type, _Args) -> erlbot_sup:start_link(). stop(_State) -> ok.