module SvelteOnRails::Installer::Utils

def self.create_file(file_path)

def self.create_file(file_path)
  unless File.exist?(file_path)
    FileUtils.touch(file_path)
    puts "Created empty file at file://#{file_path}"
  end
end