mfm/src/commands/mapping_delete.cr

22 lines
441 B
Crystal
Raw Normal View History

2024-10-27 20:41:35 +01:00
# 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
2024-12-10 23:54:52 +01:00
def initialize(config : GX::Config)
end
def execute
2024-12-10 23:54:52 +01:00
# TODO: implement
end
def self.handles_mode
GX::Types::Mode::MappingDelete
end
end
end