mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
13 lines
251 B
Ruby
13 lines
251 B
Ruby
require 'dry-struct'
|
|
require 'instapaper/types'
|
|
|
|
module Instapaper
|
|
class Credentials < Dry::Struct
|
|
include Types
|
|
|
|
transform_keys(&:to_sym)
|
|
|
|
attribute :oauth_token, Types::String
|
|
attribute :oauth_token_secret, Types::String
|
|
end
|
|
end
|