Comment to explain Go format breakdown

This commit is contained in:
2019-09-25 22:07:25 -04:00
parent 314461f5e6
commit 7017b2e919

View File

@ -14,7 +14,9 @@ import (
// Configurable section // Configurable section
var downloadPath = "/tmp/" var downloadPath = "/tmp/"
var outputFormat = "┌───[ $USER @ $DEVICE ] [ $ID ] [ $DATE - $TIME ]\n└╼ $MSG" var outputFormat = "┌───[ $USER @ $DEVICE ] [ $ID ] [ $DATE - $TIME ]\n└╼ $MSG"
// 02 = Day, JAN = Month, 06 = Year
var dateFormat = "02JAN06" var dateFormat = "02JAN06"
// 15 = hours, 04 = minutes, 05 = seconds
var timeFormat = "15:04" var timeFormat = "15:04"
// End configurable section // End configurable section