blob: feabb1d1d8d24fad57a3eadb6b132c0a852a755f [file] [log] [blame]
Christopher Piro5b3a8f72007-08-01 22:27:37 +00001%%% Copyright (c) 2007- Facebook
2%%% Distributed under the Thrift Software License
Christopher Piro42fe4b92007-10-02 00:24:07 +00003%%%
Christopher Piro5b3a8f72007-08-01 22:27:37 +00004%%% See accompanying file LICENSE or visit the Thrift site at:
5%%% http://developers.facebook.com/thrift/
6
7-module(thrift).
8
Christopher Piro42fe4b92007-10-02 00:24:07 +00009-export([start/2, shutdown/0, stop/1]).
10-behaviour(application).
Christopher Piro5b3a8f72007-08-01 22:27:37 +000011
12-include("thrift.hrl").
13
14%%%
15%%% behavior definition
16%%%
17
Christopher Piro42fe4b92007-10-02 00:24:07 +000018start(Type, StartArgs) ->
19 ok.
Christopher Piro5b3a8f72007-08-01 22:27:37 +000020
Christopher Piro42fe4b92007-10-02 00:24:07 +000021shutdown() ->
22 application:stop(?MODULE).
Christopher Piro5b3a8f72007-08-01 22:27:37 +000023
Christopher Piro42fe4b92007-10-02 00:24:07 +000024stop(_State) ->
25 ok.