Christopher Piro | efd5eec | 2007-10-02 01:33:37 +0000 | [diff] [blame^] | 1 | %%% 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 | |||||
15 | start_link() -> | ||||
16 | supervisor:start_link({local, ?SERVER}, ?MODULE, []). | ||||
17 | |||||
18 | init(_) -> | ||||
19 | {ok, {{one_for_one,10,1}, []}}. |