pastebinner/config/configuration.rb

12 lines
210 B
Ruby
Raw Normal View History

module Pastebinner
class Configuration
2019-10-29 21:33:06 -05:00
attr_accessor :api_key, :api_username, :api_password
def initialize
@api_key = nil
@api_username = nil
@api_password = nil
end
end
end