From 0660450aa434aedaa39c09ef83cdcb581b85dc7f Mon Sep 17 00:00:00 2001 From: Ludovico Russo Date: Sat, 22 Feb 2020 12:22:05 +0100 Subject: [PATCH] =?UTF-8?q?Add=20loading=20message=20at=20startup=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index a040a539..598cb09b 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,7 @@ package main import ( + "fmt" "os" "github.com/derailed/k9s/cmd" @@ -15,6 +16,7 @@ func init() { } func main() { + fmt.Printf("🚀 loading k9s...\n") mod := os.O_CREATE | os.O_APPEND | os.O_WRONLY file, err := os.OpenFile(config.K9sLogs, mod, config.DefaultFileMod) if err != nil {