blob: feabb1d1d8d24fad57a3eadb6b132c0a852a755f [file] [log] [blame]
Christopher Piro5b3a8f72007-08-01 22:27:37 +00001%%% Copyright (c) 2007- Facebook
2%%% Distributed under the Thrift Software License
3%%%
4%%% See accompanying file LICENSE or visit the Thrift site at:
5%%% http://developers.facebook.com/thrift/
6
7-module(thrift).
8
9-export([start/2, shutdown/0, stop/1]).
10-behaviour(application).
11
12-include("thrift.hrl").
13
14%%%
15%%% behavior definition
16%%%
17
18start(Type, StartArgs) ->
19 ok.
20
21shutdown() ->
22 application:stop(?MODULE).
23
24stop(_State) ->
25 ok.