Merge pull request '添加计时器,麦克风,摄像头开关' (#45) from develop-frontend8 into develop 33分钟前 #46

Merged
huanghaosheng merged 60 commits from develop into main 2026-06-13 20:43:07 +08:00
Showing only changes of commit f07916ab0f - Show all commits

View File

@@ -106,7 +106,7 @@ func healthHandler(sessionMgr session.Manager) gin.HandlerFunc {
c.JSON(200, gin.H{ c.JSON(200, gin.H{
"status": "ok", "status": "ok",
"version": "0.1.0", "version": "0.1.0",
"uptime": time.Since(startTime).String(), "uptime_seconds": int(time.Since(startTime).Seconds()),
"active_sessions": sessionMgr.ActiveCount(), "active_sessions": sessionMgr.ActiveCount(),
}) })
} }