ash_phoenix/test/support/api.ex
2021-07-12 17:19:17 -04:00

10 lines
204 B
Elixir

defmodule AshPhoenix.Test.Api do
@moduledoc false
use Ash.Api
resources do
resource(AshPhoenix.Test.Comment)
resource(AshPhoenix.Test.Post)
resource(AshPhoenix.Test.PostLink)
end
end