summaryrefslogtreecommitdiff
path: root/internal/version.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-04 21:07:24 +0200
committerPaul Buetow <paul@buetow.org>2025-03-04 21:07:24 +0200
commit5801483d530107d8b695454d91f0395eb01857cd (patch)
tree4ffca4b161a1719b80fa7512c119302001249057 /internal/version.go
parent59889dba189c3762f0fe3734d18ad88f4ada59a3 (diff)
new logo
Diffstat (limited to 'internal/version.go')
-rw-r--r--internal/version.go15
1 files changed, 15 insertions, 0 deletions
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)
+}