11 lines
210 B
Ruby
11 lines
210 B
Ruby
module Pastebinner
|
|
class Configuration
|
|
attr_accessor :api_key, :api_username, :api_password
|
|
|
|
def initialize
|
|
@api_key = nil
|
|
@api_username = nil
|
|
@api_password = nil
|
|
end
|
|
end
|
|
end
|