From 24b2c436bf28ce67dddc79559801215c23af7df7 Mon Sep 17 00:00:00 2001 From: konrad Date: Thu, 29 Nov 2018 01:41:00 +0100 Subject: [PATCH] Added fancy startup header --- main.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/main.go b/main.go index d4193b5..2fb7fa3 100644 --- a/main.go +++ b/main.go @@ -18,12 +18,37 @@ package main import ( + "fmt" "git.kolaente.de/sofaraum/client/pkg/processing" "os" ) +// Version sets the version. Will be overwritten by drone or when building with the makefile +var Version = "0.1" + func main() { + fmt.Println(` + ___.--------'´´´´´´:´´´´´´'--------.___ + ( | : | ) + \ ,;,,, : | / + |\%%%%\___________:__________/~~~~~/| + / ,\%%%%\ | / @*@ /, \ + /_ / ´´´´´ | ~~~~~~ \ _\ + (@l) | (@l) + ||__________________|__________________|| + ||_____________________________________|| + /_|_____________________________________|_\ + + ================================================= + Sofaraum Client Version ` + Version + ` + + Copyright (C) 2018 K. Langenberg + This program comes with ABSOLUTELY NO WARRANTY + This is free software, and you are welcome + to redistribute it under certain conditions + =================================================`) + stop := make(chan int) go processing.RunAirodumpNG(stop)