Sha256: 119b602b421c5ae1da4638d10795b1112000dba77c79259472e97154f159e275

Contents?: true

Size: 321 Bytes

Versions: 1

Compression:

Stored size: 321 Bytes

Contents

# frozen_string_literal: true
require 'singleton'

module Bankster
  class Client
    class Configuration
      include Singleton

      attr_accessor :api_url
      attr_accessor :api_key

      def initialize
        @api_url = 'http://bankster-proxy-prod.eu-central-1.elasticbeanstalk.com'
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bankster-client-0.0.6 lib/bankster/client/configuration.rb