forked from glenux/mfm
17 lines
278 B
Crystal
17 lines
278 B
Crystal
|
require "./abstract_command"
|
||
|
|
||
|
module GX::Commands
|
||
|
class GlobalMapping < AbstractCommand
|
||
|
def initialize(config : GX::Config) # FIXME
|
||
|
end
|
||
|
|
||
|
def execute
|
||
|
# FIXME: implement
|
||
|
end
|
||
|
|
||
|
def self.handles_mode
|
||
|
GX::Types::Mode::GlobalMapping
|
||
|
end
|
||
|
end
|
||
|
end
|