This commit is contained in:
pushfs
2023-09-01 17:32:05 +02:00
parent d2e214f691
commit 918554dc9e
+8 -1
View File
@@ -16,8 +16,15 @@ var style = lipgloss.NewStyle().
PaddingLeft(5).
Width(30)
var subline = lipgloss.NewStyle().
Bold(true).
Align(lipgloss.Center).
PaddingLeft(5).
Width(30)
func main() {
fmt.Println(style.Render(" _____________\n__________(_)__ __/\n__ ___/_ /__ /_ \n_(__ )_ / _ __/ \n/____/ /_/ /_/\n\nhttps://sif.sh - man's best friend"))
fmt.Println(style.Render(" _____________\n__________(_)__ __/\n__ ___/_ /__ /_ \n_(__ )_ / _ __/ \n/____/ /_/ /_/"))
fmt.Println(subline.Render("https://sif.sh - man's best friend"))
log.Info("Hello World!")
}