educoder/app/services/application_service.rb

11 lines
156 B

class ApplicationService
include Callable
Error = Class.new(StandardError)
private
def strip(str)
str.to_s.strip.presence
end
end