mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
21 lines
540 B
Elixir
21 lines
540 B
Elixir
defmodule Pleroma.Docs.JSON do
|
|
@behaviour Pleroma.Docs.Generator
|
|
|
|
@spec process(keyword()) :: {:ok, String.t()}
|
|
def process(descriptions) do
|
|
config_path = "docs/generate_config.json"
|
|
|
|
with {:ok, file} <- File.open(config_path, [:write]),
|
|
json <- generate_json(descriptions),
|
|
:ok <- IO.write(file, json),
|
|
:ok <- File.close(file) do
|
|
{:ok, config_path}
|
|
end
|
|
end
|
|
|
|
@spec generate_json([keyword()]) :: String.t()
|
|
def generate_json(descriptions) do
|
|
Jason.encode!(descriptions)
|
|
end
|
|
end
|