Simple example on how to implement the typical .call interface for plain ruby service objects.
.call
class User def greet Greeter.call(name) end end
Just an example on how you would call the service.