This commit is contained in:
2026-07-14 22:50:46 +04:00
parent 27143319e3
commit bd19e0682b
3116 changed files with 467189 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
defmodule NimblePool.Application do
@moduledoc false
use Application
def start(_type, _opts) do
children = [
{Task.Supervisor, name: NimblePool.TaskSupervisor}
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end