mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
4 lines
110 B
Elixir
4 lines
110 B
Elixir
defmodule ItemHandler do
|
|
@callback handle(Item) :: Item
|
|
@callback is_handled?(String.t()) :: boolean()
|
|
end |