Service Caller

How to Use

def call … end end

* call the service

ruby service = [Custom Service].call(*args)

* check if success

ruby service.success? service.failed?

* get success result if success

ruby service.result

* get error if failed

ruby service.error

“`