16 lines
383 B
Crystal
16 lines
383 B
Crystal
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
#
|
||
|
# SPDX-FileCopyrightText: 2023 Glenn Y. Rolland <glenux@glenux.net>
|
||
|
# Copyright © 2023 Glenn Y. Rolland <glenux@glenux.net>
|
||
|
|
||
|
require "../abstract_command"
|
||
|
|
||
|
module GX::Operations::Filesystems
|
||
|
class ListCommand < AbstractCommand
|
||
|
def execute()
|
||
|
raise NotImplementedError.new("ListCommand is not Implemented")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|