module SvelteOnRails::Installer::Utils

def self.check_folder_exists(folder_path)

def self.check_folder_exists(folder_path)
  unless File.exist?(folder_path)
    raise "ERROR: Folder not found: #{folder_path}"
  end
end