ash_graphql/test/support/api.ex

14 lines
205 B
Elixir
Raw Normal View History

2020-12-02 18:07:15 +13:00
defmodule AshGraphql.Test.Api do
@moduledoc false
use Ash.Api,
extensions: [
AshGraphql.Api
],
otp_app: :ash_graphql
2020-12-02 18:07:15 +13:00
resources do
registry(AshGraphql.Test.Registry)
2020-12-02 18:07:15 +13:00
end
end