new: added debug callback to the network package

This commit is contained in:
evilsocket 2018-10-12 13:24:13 +02:00
parent 058a6865ff
commit e50eaad7e6
3 changed files with 18 additions and 0 deletions

7
network/debug.go Normal file
View file

@ -0,0 +1,7 @@
package network
type DebugFunc func(format string, args ...interface{})
var Debug = func(format string, args ...interface{}) {
}