# frozen_string_literal: true module Balboa module Interactor class InteractorWrapper def initialize(interactor) @interactor = interactor end def punch(date) @interactor.punch(date) end def last_punch @interactor.last_punch end end end end