# frozen_string_literal: true module Balboa module CLI module Command class ResetCommand def execute File.delete(Balboa::CONFIG_FILE) command_output end private def command_output "\nBalboa restored to initial settings!" end end end end end