social.metadata.moe/lib/pleroma/web/plugs/rate_limiter/supervisor.ex

21 lines
546 B
Elixir
Raw Normal View History

2020-10-13 02:00:50 +09:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2020-06-24 14:38:42 +09:00
defmodule Pleroma.Web.Plugs.RateLimiter.Supervisor do
2019-11-11 21:13:06 +09:00
use Supervisor
def start_link(opts) do
Supervisor.start_link(__MODULE__, opts, name: __MODULE__)
end
def init(_args) do
children = [
2020-06-24 14:39:56 +09:00
Pleroma.Web.Plugs.RateLimiter.LimiterSupervisor
2019-11-11 21:13:06 +09:00
]
opts = [strategy: :one_for_one, name: Pleroma.Web.Streamer.Supervisor]
Supervisor.init(children, opts)
end
end