mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2024-12-30 02:37:01 +00:00
9 lines
142 B
Go
9 lines
142 B
Go
// Package debug indicates if the debug tag is enabled at build time.
|
|
package debug
|
|
|
|
var _debug = false
|
|
|
|
func Debug() bool {
|
|
return _debug
|
|
}
|