mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-09 17:25:38 +00:00
* chore: release version v1.3.1 * fix(Core): Add system "true security" correction * chore: release version v1.3.1
10 lines
207 B
Elixir
10 lines
207 B
Elixir
defmodule WandererApp.TaskWrapper do
|
|
def start_link(module, func, args) do
|
|
if Mix.env() == :test do
|
|
apply(module, func, args)
|
|
else
|
|
Task.start_link(module, func, args)
|
|
end
|
|
end
|
|
end
|