mirror of
https://github.com/wahyd4/wx_pay.git
synced 2026-08-09 04:46:49 +10:00
18 lines
316 B
Ruby
18 lines
316 B
Ruby
require 'wx_pay/result'
|
|
require 'wx_pay/sign'
|
|
require 'wx_pay/service'
|
|
|
|
module WxPay
|
|
class<< self
|
|
attr_accessor :appid, :mch_id, :key
|
|
|
|
def extra_rest_client_options=(options)
|
|
@rest_client_options = options
|
|
end
|
|
|
|
def extra_rest_client_options
|
|
@rest_client_options || {}
|
|
end
|
|
end
|
|
end
|