graudeejs/tripletexer

View on GitHub
lib/tripletexer/endpoints/timesheet.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Tripletexer::Endpoints
  class Timesheet < AbstractEndpoint
    def entry
      Tripletexer::Endpoints::Timesheet::Entry.new(api_client)
    end

    def time_clock
      Tripletexer::Endpoints::Timesheet::TimeClock.new(api_client)
    end
  end
end