Fixed lint
the build was successful Details

This commit is contained in:
konrad 2019-02-01 16:36:53 +01:00
parent afa6429cbf
commit 3d3c2cee15
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
4 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,7 @@ import (
// Version sets the version. Will be overwritten by drone or when building with the makefile
var Version = "0.1"
// TheSofa holds a fancy ascii art logo
var TheSofa = `
___.--------'´´´´´´:´´´´´´'--------.___
( | : | )

View File

@ -19,6 +19,7 @@ package processing
import "os"
// SummonTheDaemon starts the daemon which collects metrics
func SummonTheDaemon() {
stop := make(chan bool)
go RunAirodumpNG(stop)

View File

@ -22,6 +22,7 @@ import (
"github.com/prometheus/client_golang/prometheus/promauto"
)
// RecordMetrics is the function which puts the active clients in the metrics endpoints
func RecordMetrics() {
go func() {
for {

View File

@ -17,6 +17,7 @@
package processing
// ActiveClients is the channel which holds all active clients
var ActiveClients chan int64
func init() {