mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
13 lines
194 B
Ruby
13 lines
194 B
Ruby
module WechatOauth
|
|
class << self
|
|
attr_accessor :appid, :secret, :scope, :base_url
|
|
|
|
def logger
|
|
@_logger ||= STDOUT
|
|
end
|
|
|
|
def logger=(l)
|
|
@_logger = l
|
|
end
|
|
end
|
|
end |