Christopher Piro | efd5eec | 2007-10-02 01:33:37 +0000 | [diff] [blame] | 1 | %%% Copyright (c) 2007- Facebook |
| 2 | %%% Distributed under the Thrift Software License |
David Reiss | 0c90f6f | 2008-02-06 22:18:40 +0000 | [diff] [blame] | 3 | %%% |
Christopher Piro | efd5eec | 2007-10-02 01:33:37 +0000 | [diff] [blame] | 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}, []}}. |