mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-29 18:33:05 +00:00
Add helper function for colouring expiries
This commit is contained in:
parent
f9137f3bb0
commit
b4259fcd79
1 changed files with 20 additions and 0 deletions
20
cmd/headscale/cli/pterm_style.go
Normal file
20
cmd/headscale/cli/pterm_style.go
Normal 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
|
||||
}
|
Loading…
Reference in a new issue