blob: 545ffa8717073bdbecc0440974e0d12e74a6b20c [file] [log] [blame]
Christopher Piroefd5eec2007-10-02 01:33:37 +00001%%% Copyright (c) 2007- Facebook
2%%% Distributed under the Thrift Software License
David Reiss0c90f6f2008-02-06 22:18:40 +00003%%%
Christopher Piroefd5eec2007-10-02 01:33:37 +00004%%% 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}, []}}.