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>
|
|
|
|
|
2024-01-14 20:31:38 +01:00
|
|
|
require "./abstract_command"
|
|
|
|
|
|
|
|
module GX::Commands
|
|
|
|
class MappingDelete < AbstractCommand
|
2024-12-10 23:54:52 +01:00
|
|
|
def initialize(config : GX::Config)
|
2024-01-14 20:31:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2024-12-10 23:54:52 +01:00
|
|
|
# TODO: implement
|
2024-01-14 20:31:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.handles_mode
|
|
|
|
GX::Types::Mode::MappingDelete
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|