ash_hq/lib/ash_hq_web/helpers.ex
2022-08-22 19:44:37 -04:00

7 lines
155 B
Elixir

defmodule AshHqWeb.Helpers do
@moduledoc "Simple helpers for doc liveviews"
def latest_version(library) do
Enum.at(library.versions, 0)
end
end