From 31b8071350cd9306c263306e8589fb0ff2db90a6 Mon Sep 17 00:00:00 2001 From: talksik Date: Tue, 28 Oct 2025 17:08:02 -0700 Subject: [PATCH] show loading message on start of program --- go-cli/cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-cli/cmd/main.go b/go-cli/cmd/main.go index c08d4e6..458b817 100644 --- a/go-cli/cmd/main.go +++ b/go-cli/cmd/main.go @@ -497,7 +497,7 @@ func unaryInterceptor(ctx context.Context, method string, req, reply interface{} } func main() { - logrus.Infof("hello world") + logrus.Infof("Loading customer data...wait a moment") humansData := getHumansData() p := tea.NewProgram(initialModel(humansData))