%% This Source Code Form is subject to the terms of the Mozilla Public %% License, v. 2.0. If a copy of the MPL was not distributed with this %% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% %% Copyright (c) 2019-2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(credentials_obfuscation_sup). -behaviour(supervisor). %% API -export([start_link/0]). %% Supervisor callbacks -export([init/1]). %% =================================================================== %% API functions %% =================================================================== -spec start_link() -> 'ignore' | {'error', _} | {'ok', pid()}. start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []). %% =================================================================== %% Supervisor callbacks %% =================================================================== init([]) -> SupFlags = #{ strategy => one_for_one, intensity => 1, period => 5 }, ChildSpec = #{ id => credentials_obfuscaton_svc, start => {credentials_obfuscation_svc, start_link, []} }, {ok, {SupFlags, [ChildSpec]}}.