mfm/src/commands/mapping_delete.cr

21 lines
441 B
Crystal

# SPDX-License-Identifier: GPL-3.0-or-later
#
# SPDX-FileCopyrightText: 2024 Glenn Y. Rolland <glenux@glenux.net>
# Copyright © 2024 Glenn Y. Rolland <glenux@glenux.net>
require "./abstract_command"
module GX::Commands
class MappingDelete < AbstractCommand
def initialize(config : GX::Config)
end
def execute
# TODO: implement
end
def self.handles_mode
GX::Types::Mode::MappingDelete
end
end
end