Sha256: 06fdd18307266fc934e928e5cb3104871ddb844e2be4b62256e8693ea243fc6f
Contents?: true
Size: 414 Bytes
Versions: 49
Compression:
Stored size: 414 Bytes
Contents
module ShopifyCLI module Services module App module Tunnel class AuthService < BaseService attr_accessor :context, :token def initialize(token:, context:) @context = context @token = token super() end def call ShopifyCLI::Tunnel.auth(context, token) end end end end end end
Version data entries
49 entries across 49 versions & 1 rubygems