Remove Micro::Case#call (Breaking Change)
serradura opened this issue · 0 comments
serradura commented
Until now was possible to invoke use cases using two approaches:
MyCase.call(some_hash)
MyCase.new(some_hash).call
In v3 will be possible to use only the first option. e.g. MyCase.call(some_hash)
Definition of done:
- Update README removing examples that use this older way.
- Remove
Micro::Case#call