5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 13:54:17 +00:00
panel/app/lib/hidden_service_client.rb

14 lines
221 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
require 'httparty'
class HiddenServiceClient
include HTTParty
base_uri ENV.fetch('HIDDEN_SERVICE', 'http://tor:3000')
def create(name)
self.class.get("/#{name}").body
end
end