From d2cf19188abd07fb77092f164c0c0ae0b25c9402 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Fri, 2 Dec 2022 12:23:12 -0500 Subject: [PATCH] lint (#129) --- cmd/zrok/admin_list_frontends.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/zrok/admin_list_frontends.go b/cmd/zrok/admin_list_frontends.go index 3ca7caa1..14ec756d 100644 --- a/cmd/zrok/admin_list_frontends.go +++ b/cmd/zrok/admin_list_frontends.go @@ -45,14 +45,14 @@ func (cmd *adminListFrontendsCommand) run(_ *cobra.Command, args []string) { fmt.Println() t := table.NewWriter() t.SetOutputMirror(os.Stdout) - t.SetStyle(table.StyleColoredBright) - t.AppendHeader(table.Row{"Token", "zId", "Url Template", "Public Name", "Created At", "Updated At"}) + t.SetStyle(table.StyleColoredDark) + t.AppendHeader(table.Row{"Token", "zId", "Public Name", "Url Template", "Created At", "Updated At"}) for _, pfe := range resp.Payload { t.AppendRow(table.Row{ pfe.Token, pfe.ZID, - pfe.URLTemplate, pfe.PublicName, + pfe.URLTemplate, time.UnixMilli(pfe.CreatedAt), time.UnixMilli(pfe.UpdatedAt), })