mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +08:00
18 lines
285 B
Ruby
18 lines
285 B
Ruby
class Trace::SystemInfoService < Trace::ClientService
|
|
|
|
attr_accessor :token
|
|
|
|
def initialize(token)
|
|
@token = token
|
|
end
|
|
|
|
def call
|
|
result = authed_get(token, url)
|
|
response = render_response(result)
|
|
end
|
|
|
|
private
|
|
def url
|
|
'/user/systemInfo'.freeze
|
|
end
|
|
end |