1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-12-20 19:09:07 +01:00

Add helper function for colouring expiries

This commit is contained in:
Kristoffer Dalby 2022-01-25 22:11:15 +00:00
parent f9137f3bb0
commit b4259fcd79

View File

@ -0,0 +1,20 @@
package cli
import (
"time"
"github.com/pterm/pterm"
)
func ColourTime(date time.Time) string {
dateStr := date.Format("2006-01-02 15:04:05")
now := time.Now()
if date.After(now) {
dateStr = pterm.LightGreen(dateStr)
} else {
dateStr = pterm.LightRed(dateStr)
}
return dateStr
}