You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
958 B

=begin
#Seaweedfs Master Server API
#The Seaweedfs Master Server API allows you to store blobs
The version of the OpenAPI document: 3.43.0
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 6.4.0
=end
# Common files
require 'openapi_client/api_client'
require 'openapi_client/api_error'
require 'openapi_client/version'
require 'openapi_client/configuration'
# Models
require 'openapi_client/models/file_key'
require 'openapi_client/models/location'
# APIs
require 'openapi_client/api/default_api'
module OpenapiClient
class << self
# Customize default settings for the SDK using block.
# OpenapiClient.configure do |config|
# config.username = "xxx"
# config.password = "xxx"
# end
# If no block given, return the default Configuration object.
def configure
if block_given?
yield(Configuration.default)
else
Configuration.default
end
end
end
end