# typed: false # frozen_string_literal: true module Bhook class RootDirectory < Directory extend T::Sig sig { params(src_path: Pathname, out_path: Pathname).void } def initialize(src_path, out_path) super(src_path, out_path, Git.open(src_path)) end end end