technekes/alchemy-api-rb

View on GitHub
lib/alchemy-api/relation_extraction.rb

Summary

Maintainability
A
0 mins
Test Coverage
module AlchemyAPI
  class RelationExtraction < Base
    Config.add_mode :relation_extraction, self

    def web_method
      "#{method_prefix}GetRelations"
    end

    private

    def indexer
      'relations'
    end
  end
end