Move class to lib, add sugar, add tests

This commit is contained in:
Alex Sherman 2021-05-20 17:06:34 +05:00
parent 74e3d5461b
commit 45dfa57529
10 changed files with 71 additions and 36 deletions

View file

@ -0,0 +1,5 @@
class ApplicationService
def self.call(*args, &block)
new(*args, &block).call
end
end