Files
nginx-ui/api/system/stats.go
2025-08-21 10:11:13 +08:00

17 lines
185 B
Go

package system
import (
"net/http"
"os"
"github.com/gin-gonic/gin"
)
func GetProcessStats(c *gin.Context) {
pid := os.Getpid()
c.JSON(http.StatusOK, gin.H{
"pid": pid,
})
}