Napice/roda_api_generator

View on GitHub
example/application/api/operations/user_service.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  module Operations
    class UserService
      def initialize(params)
        @params = params
      end

      attr_reader :params

      def show_params
        params['email']
      end
    end
  end
end