From 5801483d530107d8b695454d91f0395eb01857cd Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 4 Mar 2025 21:07:24 +0200 Subject: new logo --- internal/run.go | 1 + internal/version.go | 15 +++++++++++++++ 2 files changed, 16 insertions(+) (limited to 'internal') diff --git a/internal/run.go b/internal/run.go index b2ea847..016d336 100644 --- a/internal/run.go +++ b/internal/run.go @@ -20,6 +20,7 @@ func run(ctx context.Context, args config.Args) error { return summary.Run(ctx, args) } now := time.Now().Unix() + printLogo() if args.ComposeMode { entryPath := fmt.Sprintf("%s/%d.ask.txt", args.GosDir, now) diff --git a/internal/version.go b/internal/version.go index ba7c4cb..7f62960 100644 --- a/internal/version.go +++ b/internal/version.go @@ -1,6 +1,8 @@ package internal import ( + "fmt" + "codeberg.org/snonux/gos/internal/table" ) @@ -17,3 +19,16 @@ func printVersion() { // fmt.Println("Go version:", info.GoVersion) // fmt.Println("App version:", info.Main.Version) } + +func printLogo() { + raw := ` █████████ + ███░░░░░███ + ██░░░ ░░░ ██████ █████ +░███ ███░░███ ███░░ +░███ █████░███ ░███░░█████ +░░███ ░░███ ░███ ░███ ░░░░███ + ░░█████████ ░░██████ ██████ + ░░░░░░░░░ ░░░░░░ ░░░░░░` + + fmt.Println(raw) +} -- cgit v1.2.3