technekes/alchemy-api-rb

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

Summary

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

    def web_method
      "#{method_prefix}GetLanguage"
    end

    private

    def indexer
      nil
    end
  end
end