13 lines
296 B
Ruby
13 lines
296 B
Ruby
module Pastebinner
|
|
class Configuration
|
|
attr_accessor :api_key, :api_username, :api_password, :elasticsearch_url, :redis_url
|
|
|
|
def initialize
|
|
@api_key = nil
|
|
@api_username = nil
|
|
@api_password = nil
|
|
@elasticsearch_url = nil
|
|
@redis_url = nil
|
|
end
|
|
end
|
|
end
|