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