ash/lib/ash/uuid.ex
Zach Daniel d42c778a0d improvement: many compile time fixes via code splitting
feat: refactored manage_relationship options/behavior
2021-02-22 20:44:03 -05:00

8 lines
152 B
Elixir

defmodule Ash.UUID do
@moduledoc "Helpers for working with UUIDs"
@doc "Generates a new uuid"
def generate do
Ecto.UUID.generate()
end
end