ash_cubdb/test/support/api.ex
James Harton 74d878b70e
All checks were successful
continuous-integration/drone/push Build is passing
feat: create and read works.
2023-09-29 20:30:42 +13:00

10 lines
140 B
Elixir

defmodule Support.Api do
@moduledoc false
use Ash.Api
resources do
resource(Support.Author)
resource(Support.Post)
end
end