ignacio-chiazzo/ruby_whatsapp_sdk

View on GitHub
lib/whatsapp_sdk/api/api_configuration.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module WhatsappSdk
  module Api
    module ApiConfiguration
      DEFAULT_API_VERSION = "v19.0"
      API_URL = "https://graph.facebook.com"
    end
  end
end