IMcPwn/browser-backdoor

View on GitHub
server/lib/bbs/printcolor.rb

Summary

Maintainability
A
0 mins
Test Coverage
#
# Copyright (c) 2016 IMcPwn  - http://imcpwn.com
# BrowserBackdoorServer by IMcPwn.
# See the file 'LICENSE' for copying permission
#

require 'colorize'

module Bbs

module PrintColor
    def PrintColor.print_error(message)
        puts "[X] ".colorize(:red) + message
    end

    def PrintColor.print_notice(message)
        puts "[*] ".colorize(:green) + message
    end
end

end