ash_graphql/lib/resource/subscription/config.ex

10 lines
264 B
Elixir
Raw Normal View History

2024-01-05 00:53:59 +13:00
defmodule AshGraphql.Resource.Subscription.Config do
@callback config(args :: map(), info :: map()) :: {:ok, Keyword.t()} | {:error, Keyword.t()}
defmacro __using__(_) do
quote do
@behaviour AshGraphql.Resource.Subscription.Config
end
end
end