refactor: move client info handling to desktop-specific files

Move client information related functions from client_info_*.go to desktop_*.go files
to better organize platform-specific code and separate desktop functionality from
shared code.

No functional changes.
This commit is contained in:
Cuong Manh Le
2025-10-09 17:49:21 +07:00
committed by Cuong Manh Le
parent c736f4c1e9
commit 7a2277bc18
6 changed files with 21 additions and 28 deletions
+3
View File
@@ -5,3 +5,6 @@ package ctrld
func IsDesktopPlatform() bool {
return true
}
// SelfDiscover reports whether ctrld should only do self discover.
func SelfDiscover() bool { return true }