Sha256: 1ed9d8b8bbd82ad78de873355c5cfe68d5808fda03c638235ce7fa905cf5e2b1
Contents?: true
Size: 388 Bytes
Versions: 13
Compression:
Stored size: 388 Bytes
Contents
# frozen_string_literal: true module Trusona module Services ## # A service to interact with the User resource in the Trusona REST API class UsersService < BaseService def initialize(client: Trusona::Api::HTTPClient.new, mapper: Trusona::Mappers::UserMapper.new) super @resource_path = '/api/v2/users' end end end end
Version data entries
13 entries across 13 versions & 1 rubygems