Current section

Files

Jump to
plug_response_cache lib plug_response_cache supervisor.ex
Raw

lib/plug_response_cache/supervisor.ex

defmodule PlugResponseCache.Supervisor do
use Application
import Supervisor.Spec, warn: false
def start(_type, _args) do
[supervisor(PlugResponseCache.Stores.Ets, [])]
|> Supervisor.start_link(strategy: :one_for_one)
end
end