Current section
Files
Jump to
Current section
Files
lib/plus_one_updoot/integer.ex
defmodule PlusOneUpdoot.Integer do
alias PlusOneUpdoot.Counter
def increment!(integer \\ 0) when is_integer(integer) do
Counter.increment_integer!(integer)
end
end