Added fancy startup header
the build was successful Details

This commit is contained in:
konrad 2018-11-29 01:41:00 +01:00
parent be06978763
commit 24b2c436bf
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 25 additions and 0 deletions

25
main.go
View File

@ -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)