DEBSOURCES
Skip Quicknav
sources / ruby-oauth2 / 2.0.9-1 / lib / oauth2 / strategy / base.rb
1234567891011
# frozen_string_literal: true module OAuth2 module Strategy class Base def initialize(client) @client = client end end end end