forked from AkkomaGang/akkoma
18 lines
493 B
Elixir
18 lines
493 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"
|
|
{:ok, file} = File.open(config_path, [:write])
|
|
json = generate_json(descriptions)
|
|
IO.write(file, json)
|
|
:ok = File.close(file)
|
|
{:ok, config_path}
|
|
end
|
|
|
|
@spec generate_json([keyword()]) :: String.t()
|
|
def generate_json(descriptions) do
|
|
Jason.encode!(descriptions)
|
|
end
|
|
end
|