%%% Copyright (c) 2007- Facebook | |
%%% Distributed under the Thrift Software License | |
%%% | |
%%% See accompanying file LICENSE or visit the Thrift site at: | |
%%% http://developers.facebook.com/thrift/ | |
-module(thrift_app_sup). | |
-behaviour(supervisor). | |
-export([start_link/0, init/1]). | |
-define(SERVER, ?MODULE). | |
start_link() -> | |
supervisor:start_link({local, ?SERVER}, ?MODULE, []). | |
init(_) -> | |
{ok, {{one_for_one,10,1}, []}}. |