Skip to content

Commit

Permalink
add logo and version
Browse files Browse the repository at this point in the history
  • Loading branch information
sado committed Oct 8, 2022
1 parent aaaf771 commit 39061d2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ASCII.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package go_kitx

const (
version = "v0.0.1"

logo = `
██████╗ ██████╗ ██╗ ██╗██╗████████╗██╗ ██╗
██╔════╝ ██╔═══██╗ ██║ ██╔╝██║╚══██╔══╝╚██╗██╔╝
██║ ███╗██║ ██║█████╗█████╔╝ ██║ ██║ ╚███╔╝
██║ ██║██║ ██║╚════╝██╔═██╗ ██║ ██║ ██╔██╗
╚██████╔╝╚██████╔╝ ██║ ██╗██║ ██║ ██╔╝ ██╗
╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝
`
)
7 changes: 7 additions & 0 deletions ASCII_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package go_kitx

import "testing"

func Test_New(t *testing.T) {
t.Log(logo)
}

0 comments on commit 39061d2

Please sign in to comment.