GoBroke/conf/funcs_tunnel.go

10 lines
145 B
Go
Raw Normal View History

2024-12-17 17:39:10 -05:00
package conf
2025-02-04 12:14:08 -05:00
// IsDebug returns whether debug is enabled or not.
func (t *Tunnel) IsDebug() (isDebug bool) {
isDebug = t.cfg.debug
return
}