ash_postgres/test/support/api.ex
2021-01-28 19:42:55 -05:00

10 lines
206 B
Elixir

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