Files
metasploit-gs/lib/msf/ui/console/table_print/omit_column_header.rb
T
2023-02-02 16:12:19 +00:00

16 lines
221 B
Ruby

# -*- coding: binary -*-
module Msf
module Ui
module Console
module TablePrint
class OmitColumnHeader
def style(_column)
''
end
end
end
end
end
end