Remove banner

This commit is contained in:
Florian Baumann 2023-02-06 17:17:59 +01:00
parent e3ce273108
commit a6ca327118
2 changed files with 0 additions and 5 deletions

View File

@ -24,7 +24,6 @@ var rootCmd = &cobra.Command{
} }
func Execute() { func Execute() {
Banner()
if err := rootCmd.Execute(); err != nil { if err := rootCmd.Execute(); err != nil {
fmt.Println(err) fmt.Println(err)
os.Exit(1) os.Exit(1)

View File

@ -18,10 +18,6 @@ var (
Yellow = "\033[38;5;229m" Yellow = "\033[38;5;229m"
) )
func Banner() {
LogMessage(fmt.Sprintf("%s Serra %v\n", Icon, Version), "green")
}
// Colored output on commandline // Colored output on commandline
func LogMessage(message string, color string) { func LogMessage(message string, color string) {
if color == "red" { if color == "red" {