# frozen_string_literal: true
module ESM
module Command
module Test
class TargetCommand < ApplicationCommand
command_type :player
argument :target
def on_execute
end
def on_response
end
end
end
end
end