Packages
one_piece_clock
0.1.0
A Swiss Army Knife for dealing with clock-related tasks
Retired package: Deprecated - define the behaviour in your app
Current section
Files
Jump to
Current section
Files
lib/one_piece/clock.ex
defmodule OnePiece.Clock do
@moduledoc """
Defines a Clock Behavior to deal with time dependency.
"""
@doc """
Returns the current UTC date time.
"""
@callback utc_now() :: DateTime.t()
end