1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 22:55:52 +00:00
akkoma/lib/pleroma/utils.ex

13 lines
346 B
Elixir
Raw Normal View History

2019-12-09 18:23:07 +07:00
# Pleroma: A lightweight social networking server
2020-03-03 16:44:49 -06:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2019-12-09 18:23:07 +07:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Utils do
def compile_dir(dir) when is_binary(dir) do
dir
|> File.ls!()
|> Enum.map(&Path.join(dir, &1))
|> Kernel.ParallelCompiler.compile()
end
end