mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-04-02 01:35:27 +02:00
9 lines
191 B
Elixir
9 lines
191 B
Elixir
defmodule Philomena.DuplicateReports.Power do
|
|
@moduledoc false
|
|
|
|
defmacro power(left, right) do
|
|
quote do
|
|
fragment("power(?, ?)", unquote(left), unquote(right))
|
|
end
|
|
end
|
|
end
|