TC2-BBS-Mesh/internal/helpers/helper.go

23 lines
2.4 KiB
Go
Raw Permalink Normal View History

2025-03-10 11:31:35 +01:00
package helper
2025-03-10 13:58:14 +01:00
import "fmt"
func PrintBanner() {
banner := `
`
fmt.Println(banner)
}