Add account creation service

This commit is contained in:
2020-11-29 17:31:08 +01:00
parent fd2ebc4ad3
commit 18df8fe449
3 changed files with 81 additions and 0 deletions

View File

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