6 lines
126 B
Elixir
6 lines
126 B
Elixir
defmodule Pleroma.DateTime.Impl do
|
|
@behaviour Pleroma.DateTime
|
|
|
|
@impl true
|
|
def utc_now, do: NaiveDateTime.utc_now()
|
|
end
|