Add private method to print error messages in maid.cr

This commit is contained in:
Donovan Glover
2017-11-15 01:02:35 -05:00
parent 2d5ce6ffa9
commit 51e925af3d

View File

@ -127,6 +127,10 @@ module Maid
exit 0
end
private def _e(error)
puts Trucolor.format({255, 55, 20}, error)
end
def remove()
puts "Remove"
exit 0