ash_postgres/test/support/api.ex

11 lines
206 B
Elixir
Raw Normal View History

defmodule AshPostgres.Test.Api do
@moduledoc false
use Ash.Api
resources do
2021-01-13 14:22:28 +13:00
resource(AshPostgres.Test.Post)
resource(AshPostgres.Test.Comment)
resource(AshPostgres.Test.Rating)
end
end