ash_postgres/test/support/api.ex
2021-01-12 20:22:28 -05:00

9 lines
168 B
Elixir

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