blob: feabb1d1d8d24fad57a3eadb6b132c0a852a755f [file] [log] [blame]
%%% Copyright (c) 2007- Facebook
%%% Distributed under the Thrift Software License
%%%
%%% See accompanying file LICENSE or visit the Thrift site at:
%%% http://developers.facebook.com/thrift/
-module(thrift).
-export([start/2, shutdown/0, stop/1]).
-behaviour(application).
-include("thrift.hrl").
%%%
%%% behavior definition
%%%
start(Type, StartArgs) ->
ok.
shutdown() ->
application:stop(?MODULE).
stop(_State) ->
ok.