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

17 lines
214 B
Go

package system
import (
"net/http"
"code.pfad.fr/risefront"
"github.com/gin-gonic/gin"
)
func Restart(c *gin.Context) {
risefront.Restart()
c.JSON(http.StatusOK, gin.H{
"message": "restarting...",
})
}