moving to separate dir

This commit is contained in:
Alex S 2019-09-19 14:02:27 +03:00
commit 1d285e6fad
5 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1,11 @@
defmodule Pleroma.LoadTesting.Helper do
defmacro __using__(_) do
quote do
import Ecto.Query
alias Pleroma.Repo
alias Pleroma.User
defp to_sec(microseconds), do: microseconds / 1_000_000
end
end
end