module WolfCore::AsyncUtils

def run_async(&block)

def run_async(&block)
  fork do
    block.call
  end
end