Sha256: 6ef7a755f151d7d0fb24d11e5cd80e902fbfe7cfbbf552eb2ec9019363128be0

Contents?: true

Size: 260 Bytes

Versions: 1

Compression:

Stored size: 260 Bytes

Contents

# frozen_string_literal: true

module Bloodbath
  class Configuration
    attr_accessor :api_key, :api_base, :verbose

    def initialize
      @api_base = "https://api.bloodbath.io/rest" # "http://localhost:4000/rest"
      @verbose = false
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bloodbath-1.1.1 lib/bloodbath/configuration.rb