mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
def407d610
- use: FileExists, ObfuscateKey, BoolToYesNo - remove local functions moved to gosettings
9 lines
102 B
Go
9 lines
102 B
Go
package helpers
|
|
|
|
func TCPPtrToString(tcp *bool) string {
|
|
if *tcp {
|
|
return "TCP"
|
|
}
|
|
return "UDP"
|
|
}
|