From 3c4ca980e4f19a9ef23f8a5cc341b89716a52a13 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Fri, 23 Feb 2024 18:02:20 +0000 Subject: [PATCH] add a separator between statuses --- cmd/enbas/show.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cmd/enbas/show.go b/cmd/enbas/show.go index 5a4f9ea..e4e5658 100644 --- a/cmd/enbas/show.go +++ b/cmd/enbas/show.go @@ -152,8 +152,14 @@ func (c *showCommand) showTimeline(gts *client.Client) error { return nil } - for status := range statuses { + + separator := "────────────────────────────────────────────────────────────────────────" + + fmt.Println(separator) + + for _, status := range statuses { fmt.Println(status) + fmt.Println(separator) } return nil