blob: 3a44c3f48e341fe90dab8e0a901d9e9a1443a259 [file] [log] [blame]
Christopher Piroefd5eec2007-10-02 01:33: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_app_sup).
8
9-behaviour(supervisor).
10
11-export([start_link/0, init/1]).
12
13-define(SERVER, ?MODULE).
14
15start_link() ->
16 supervisor:start_link({local, ?SERVER}, ?MODULE, []).
17
18init(_) ->
19 {ok, {{one_for_one,10,1}, []}}.