feat: update chat, settings, prompts and system info modules

This commit is contained in:
2026-06-16 10:33:54 +08:00
parent b86c29c6a4
commit dd13d21c6a
18 changed files with 1362 additions and 43 deletions

View File

@@ -0,0 +1,11 @@
//go:build !linux && !windows
package handlers
func getSysMemMb() (total, free int64) {
return 0, 0
}
func getOSRelease() string {
return ""
}