ash_csv/test/support/api.ex

10 lines
153 B
Elixir
Raw Normal View History

2020-10-06 18:36:35 +13:00
defmodule AshCsv.Test.Api do
@moduledoc false
use Ash.Api
resources do
resource(AshCsv.Test.Post)
resource(AshCsv.Test.Comment)
end
end