# frozen_string_literal: true # frozen_string_literal: true\ require 'colorize' module GoNative module Utils module UI class << self def info(msg) puts msg.colorize(:green) end def output(msg) puts msg end def error(msg) puts msg.colorize(:red) end end end end end