GoBroke/conf/funcs_tunnel.go
2025-02-04 12:14:08 -05:00

10 lines
145 B
Go

package conf
// IsDebug returns whether debug is enabled or not.
func (t *Tunnel) IsDebug() (isDebug bool) {
isDebug = t.cfg.debug
return
}