ash_postgres/test/support/registry.ex
2022-05-22 18:30:20 -04:00

14 lines
353 B
Elixir

defmodule AshPostgres.Test.Registry do
@moduledoc false
use Ash.Registry
entries do
entry(AshPostgres.Test.Post)
entry(AshPostgres.Test.Comment)
entry(AshPostgres.Test.IntegerPost)
entry(AshPostgres.Test.Rating)
entry(AshPostgres.Test.PostLink)
entry(AshPostgres.Test.Author)
entry(AshPostgres.Test.Profile)
end
end