Skip to content

Commit

Permalink
adding padding
Browse files Browse the repository at this point in the history
  • Loading branch information
spoo-bar committed Sep 1, 2023
1 parent fbfb448 commit a6e2dca
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 51 deletions.
15 changes: 7 additions & 8 deletions app/upgrades/latest/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import (

const Name = "latest"

const NameASCII = `
### ### ###
# # # # # # #
# # ### # # # #
# # # # # #
### # ### # ###
const NameAsciiArt = `
### ### ###
# # # # # # #
# # ### # # # #
# # # # # #
### # ### # ###
`

Expand All @@ -32,8 +32,7 @@ var Upgrade = upgrades.Upgrade{
return nil, err
}

ctx.Logger().Info(upgrades.ArchwayNew + NameASCII)

ctx.Logger().Info(upgrades.ArchwayLogo + NameAsciiArt)
return migrations, nil
}
},
Expand Down
59 changes: 16 additions & 43 deletions app/upgrades/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,50 +24,23 @@ type Upgrade struct {

const (
ArchwayLogo = `
.:-++*#####*++=:.
.=*#################*=:
-*#######################*-
:*###########################*:
=#############*+++*#############=
=##########*=: .=*##########+
-##########+ =##########=
*#########+ +##########
:##########: :##########:
-##########: .=+*####*=: .##########-
:##########:.+###########+..##########:
*#########-*#############*-#########*
:#########*###############*#########-
=#################################=
.+###########################+.
:+#######################+:
.-+*################+-.
.-=++*****++=-.
`
ArchwayNew = `
.-=+***#***+=-.
:+*###############*+-
=*#####################*=
-*#########################*-
+##########*+=---=+*##########+
+#########*: :*#########+
:#########+ +#########:
+######### *########+
*########* .-=+++=-. *########*
*########* .+#########+: *########*
=########*:#############-*########=
.*#######**#############**#######*.
:*##############################:
=*#########################*=
-*###################*-
.-+*###########*+-.
.-=+***#***+=-.
:+*###############*+-
=*#####################*=
-*#########################*-
+##########*+=---=+*##########+
+#########*: :*#########+
:#########+ +#########:
+######### *########+
*########* .-=+++=-. *########*
*########* .+#########+: *########*
=########*:#############-*########=
.*#######**#############**#######*.
:*##############################:
=*#########################*=
-*###################*-
.-+*###########*+-.
`
)

0 comments on commit a6e2dca

Please sign in to comment.